Update configs

Remove swww (just color now)
Add pre-commit
Increase user-cleaner verbosity
This commit is contained in:
Tobias Reisinger 2023-12-15 14:12:29 +01:00
parent c2f56a9d3f
commit 2779597e69
Signed by: serguzim
GPG key ID: 13AD60C237A28DFE
4 changed files with 4 additions and 8 deletions

View file

@ -7,6 +7,6 @@ log_dir="$HOME/.cache/logs"
if [ -d "$log_dir" ]
then
echo "Cleaning old logs..."
find "$log_dir" -type f -mtime +7 -delete
find "$log_dir" -type f -mtime +1 -size -25k -delete
find "$log_dir" -type f -mtime +7 -print -delete
find "$log_dir" -type f -mtime +1 -size -25k -print -delete
fi