summaryrefslogtreecommitdiff
path: root/dotfiles
diff options
context:
space:
mode:
authorCraig Jennings <c@cjennings.net>2026-02-27 10:51:03 -0600
committerCraig Jennings <c@cjennings.net>2026-02-27 10:51:03 -0600
commit53ea56ccb050b4a72f7919e8ee6b9146cc816251 (patch)
tree30d179abdcf75f1d454fc86e4447ea0589c7b93a /dotfiles
parent534826f7f32352c8d9de841e9e07cd63e8acf711 (diff)
feat(archsetup): add rustup, log-cleanup cron, update configsHEADmain
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.
Diffstat (limited to 'dotfiles')
-rw-r--r--dotfiles/common/.config/dunst/dunstrc2
-rwxr-xr-xdotfiles/common/.local/bin/cron/log-cleanup13
-rw-r--r--dotfiles/hyprland/.config/hypr/hyprland.conf2
-rw-r--r--dotfiles/hyprland/.config/hypr/hyprlock.conf13
4 files changed, 26 insertions, 4 deletions
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
diff --git a/dotfiles/hyprland/.config/hypr/hyprland.conf b/dotfiles/hyprland/.config/hypr/hyprland.conf
index b1107bb..0981dfc 100644
--- a/dotfiles/hyprland/.config/hypr/hyprland.conf
+++ b/dotfiles/hyprland/.config/hypr/hyprland.conf
@@ -15,7 +15,7 @@ exec-once = dbus-update-activation-environment --systemd WAYLAND_DISPLAY XDG_CUR
# Portal restart (not start) reconnects stale portals on Hyprland restart.
# Backend portals (GTK, Hyprland) must restart BEFORE the main portal to avoid
# a 50s GTK settings proxy timeout. Waybar starts after portals are ready.
-exec-once = systemctl --user restart xdg-desktop-portal-hyprland xdg-desktop-portal-gtk && systemctl --user restart xdg-desktop-portal && waybar > ~/.local/var/log/waybar-$(date +%Y-%m-%d-%H%M%S).log 2>&1
+exec-once = systemctl --user restart xdg-desktop-portal-hyprland xdg-desktop-portal-gtk && systemctl --user restart xdg-desktop-portal && waybar 2>&1 | grep -v "LIBDBUSMENU-GLIB-WARNING" > ~/.local/var/log/waybar-$(date +%Y-%m-%d-%H%M%S).log
# Core services
exec-once = /usr/lib/polkit-kde-authentication-agent-1
diff --git a/dotfiles/hyprland/.config/hypr/hyprlock.conf b/dotfiles/hyprland/.config/hypr/hyprlock.conf
index fd85651..a4ce90e 100644
--- a/dotfiles/hyprland/.config/hypr/hyprlock.conf
+++ b/dotfiles/hyprland/.config/hypr/hyprlock.conf
@@ -4,8 +4,15 @@
general {
disable_loading_bar = false
hide_cursor = true
- grace = 0
- no_fade_in = false
+}
+
+animations {
+ enabled = true
+ bezier = linear, 1, 1, 0, 0
+ animation = fadeIn, 1, 5, linear
+ animation = fadeOut, 1, 5, linear
+ animation = inputFieldDots, 1, 2, linear
+ animation = inputFieldColors, 1, 3, linear
}
background {
@@ -82,7 +89,7 @@ input-field {
check_color = rgb(d7af5f)
fail_color = rgb(d47c59)
fail_text = <i>$FAIL <b>($ATTEMPTS)</b></i>
- fail_transition = 300
+
capslock_color = rgb(ccc768)
numlock_color = -1
bothlock_color = -1