dotfiles/.local/bin/scripts/wlsunset-toggle
2025-07-20 12:57:27 -04:00

7 lines
113 B
Bash
Executable file

#!/bin/bash
if pgrep -x "wlsunset" >/dev/null; then
pkill -x "wlsunset"
else
wlsunset -S 7:00 -s 21:00 &
fi