Files
dotfiles/hypr/domipoke/scripts/nightmode.sh
T
2026-07-24 14:34:57 +02:00

11 lines
218 B
Bash
Executable File

#!/bin/bash
if pgrep -x "hyprsunset" > /dev/null
then
killall -9 hyprsunset
notify-send "🌞 Day Mode Activated" -u "low"
else
hyprsunset -t 3500 &
notify-send "🌙 Night Mode Activated" -u "low"
fi