Lower time threshold for auto-trashing

This commit is contained in:
Salt 2024-12-29 12:08:27 -06:00
parent 83ec5f1ec2
commit 195d36e1c5

View File

@ -62,7 +62,7 @@ find "$HOME" \
# Remove anything that's wicked old
echo "Removing ancient downloads..."
find "$downloaddir" \
-mtime +180 \
-mtime +60 \
-print -delete
# Remove anything kinda old but really big
echo "Removing large downloads..."