blob: e8d6ac4dc54b55b89a905bd5328ccd3d787ede98 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
#!/bin/sh
# Deletes log files older than 7 days from ~/.local/var/log
# 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)
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
|