summaryrefslogtreecommitdiff
path: root/dotfiles/common/.local/bin/cron/log-cleanup
diff options
context:
space:
mode:
authorCraig Jennings <c@cjennings.net>2026-03-02 04:13:15 -0600
committerCraig Jennings <c@cjennings.net>2026-03-02 04:13:15 -0600
commit5ff5a82c9d6f106ba272e1773e91e7e032672dfd (patch)
tree2097573a51d1ee9908a790ffda25995a833d0725 /dotfiles/common/.local/bin/cron/log-cleanup
parent53ea56ccb050b4a72f7919e8ee6b9146cc816251 (diff)
feat(hyprland): rebind mod+shift+f to allfloat, add chess setup script
Add workspace allfloat toggle on mod+shift+f (was togglefloating, now on mod+shift+space only). Add scripts/setup-chess.sh for En Croissant, lc0, Maia, and Stockfish setup. Update log-cleanup to use filename dates instead of mtime. Update ssh and calibre configs.
Diffstat (limited to 'dotfiles/common/.local/bin/cron/log-cleanup')
-rwxr-xr-xdotfiles/common/.local/bin/cron/log-cleanup26
1 files changed, 23 insertions, 3 deletions
diff --git a/dotfiles/common/.local/bin/cron/log-cleanup b/dotfiles/common/.local/bin/cron/log-cleanup
index 651982c..e8d6ac4 100755
--- a/dotfiles/common/.local/bin/cron/log-cleanup
+++ b/dotfiles/common/.local/bin/cron/log-cleanup
@@ -4,10 +4,30 @@
# Services (hyprland, waybar, dunst, hypridle, gammastep) create a new
# timestamped log file per session. Without cleanup these accumulate.
#
+# Uses the date embedded in filenames (service-YYYY-MM-DD-HHMMSS.log)
+# rather than mtime, because long-running sessions keep mtime fresh
+# even on old log files.
+#
# Intended to run daily via crontab.
LOG_DIR="$HOME/.local/var/log"
+DAYS=7
+
+[ -d "$LOG_DIR" ] || exit 0
+
+cutoff=$(date -d "$DAYS days ago" +%Y%m%d)
-if [ -d "$LOG_DIR" ]; then
- find "$LOG_DIR" -name "*.log" -mtime +7 -delete
-fi
+for f in "$LOG_DIR"/*.log; do
+ [ -f "$f" ] || continue
+ # Extract YYYY-MM-DD from filename; skip files without a date
+ filedate=$(basename "$f" | grep -oP '\d{4}-\d{2}-\d{2}' | head -1)
+ [ -n "$filedate" ] || continue
+ # Skip files still being written to (modified in the last 24h).
+ # This prevents deleting active logs from long-running sessions.
+ [ -n "$(find "$f" -maxdepth 0 -mtime 0)" ] && continue
+ # Compare as integers: YYYYMMDD
+ filedate_num=$(echo "$filedate" | tr -d '-')
+ if [ "$filedate_num" -lt "$cutoff" ]; then
+ rm -f "$f"
+ fi
+done