From 53ea56ccb050b4a72f7919e8ee6b9146cc816251 Mon Sep 17 00:00:00 2001 From: Craig Jennings Date: Fri, 27 Feb 2026 10:51:03 -0600 Subject: feat(archsetup): add rustup, log-cleanup cron, update configs Add rustup toolchain manager to developer_workstation (before AUR packages that need rust to compile). Add log-cleanup cron job with test validation. Update ISO glob for archangel naming. Add dunst icon theme, hyprlock animations, waybar log filtering. --- dotfiles/common/.config/dunst/dunstrc | 2 ++ dotfiles/common/.local/bin/cron/log-cleanup | 13 +++++++++++++ 2 files changed, 15 insertions(+) create mode 100755 dotfiles/common/.local/bin/cron/log-cleanup (limited to 'dotfiles/common') diff --git a/dotfiles/common/.config/dunst/dunstrc b/dotfiles/common/.config/dunst/dunstrc index 6f8a3ec..bcfa533 100644 --- a/dotfiles/common/.config/dunst/dunstrc +++ b/dotfiles/common/.config/dunst/dunstrc @@ -40,6 +40,8 @@ icon_position = left min_icon_size = 54 max_icon_size = 80 icon_corner_radius = 4 +icon_theme = "Papirus-Dark" +enable_recursive_icon_lookup = true # Misc/Advanced dmenu = fuzzel --dmenu --prompt 'Open with' diff --git a/dotfiles/common/.local/bin/cron/log-cleanup b/dotfiles/common/.local/bin/cron/log-cleanup new file mode 100755 index 0000000..651982c --- /dev/null +++ b/dotfiles/common/.local/bin/cron/log-cleanup @@ -0,0 +1,13 @@ +#!/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. +# +# Intended to run daily via crontab. + +LOG_DIR="$HOME/.local/var/log" + +if [ -d "$LOG_DIR" ]; then + find "$LOG_DIR" -name "*.log" -mtime +7 -delete +fi -- cgit v1.2.3