Update dotfiles (2026-05-08 15:35:43)

This commit is contained in:
2026-05-08 15:35:43 +02:00
parent 362e7e51a5
commit afd1b5bd53
77 changed files with 127 additions and 347 deletions
@@ -0,0 +1,14 @@
#!/bin/sh
START=20
END=11
CURRENT=$(date +%H)
HYPRPRO=$(pgrep -x hyprsunset)
if { [[ $CURRENT -lt $START ]] || [[ $CURRENT -ge $END ]] }; then
pkill hyprsunset
else
if { [[ $CURRENT -ge $START ]] || [[ $CURRENT -lt $END ]] }; then
systemctl --user start newhyprsunset.service
fi
fi