feat: add battery-watch daemon and notification urgency support

- new battery-watch daemon: warnt bei 25% und 15% per dunst-Notification
- notify-waybar.sh schreibt jetzt auch Urgency-Level in /tmp
- notif-status.sh: neues waybar-Skript mit urgency-CSS-Klasse
- hyprland.conf: battery-watch als exec-once, clipboard-bind entfernt
- config.jsonc: Brave-Icon hinzugefügt, Battery-Schwellen auf 25/15 korrigiert
- generate.py: Font Awesome Brands ergänzt, transition:none für critical-blink
- reload.sh: waybar-Start korrigiert (disown als eigene Zeile)
- install.sh: startet dunst und battery-watch nach Theme-Load neu
This commit is contained in:
2026-04-22 20:56:34 +02:00
parent 8c6ae68298
commit e84a2d888a
8 changed files with 66 additions and 7 deletions
+11
View File
@@ -62,6 +62,17 @@ echo ""
echo "Loading theme..."
~/.config/wal/reload.sh
# Restart dunst so new dunstrc and scripts take effect
pkill dunst 2>/dev/null; sleep 0.1; dunst > /dev/null 2>&1 &
disown
echo " restarted dunst"
# Start battery-watch for current session (exec-once handles future logins)
pkill -f battery-watch 2>/dev/null
~/.local/bin/battery-watch > /dev/null 2>&1 &
disown
echo " started battery-watch"
echo ""
echo "Profile '$PROFILE_NAME' installed."
echo ""