Files
2026-06-25 19:17:20 +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