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. --- archsetup | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'archsetup') diff --git a/archsetup b/archsetup index ab9478c..260afdb 100755 --- a/archsetup +++ b/archsetup @@ -1149,6 +1149,12 @@ EOF action="enabling the batch delayed command scheduler" && display "task" "$action" systemctl enable atd >> "$logfile" 2>&1 || error_warn "$action" "$?" + action="installing log cleanup cron job" && display "task" "$action" + (sudo -u "$username" crontab -l 2>/dev/null; \ + echo "0 12 * * * \$HOME/.local/bin/cron/log-cleanup") \ + | sudo -u "$username" crontab - \ + >> "$logfile" 2>&1 || error_warn "$action" "$?" + # Package Repository Cache Maintenance display "subtitle" "Package Repository Cache Maintenance" @@ -1763,6 +1769,12 @@ developer_workstation() { action="Developer Workstation" && display "title" "$action" action="Programming Languages and Utilities" && display "subtitle" "$action" + # Rust (via rustup — must precede AUR packages that compile with rust) + pacman_install rustup # Rust toolchain manager + action="setting default rust toolchain to stable" && display "task" "$action" + (sudo -u "$username" rustup default stable >> "$logfile" 2>&1) || \ + error_warn "$action" "$?" + # C pacman_install clang # C/C++ compiler pacman_install cmake # make system -- cgit v1.2.3