Files
MinOS-prime/home/.config/fish/functions/night_mode_toggle.fish
2025-07-11 18:08:12 +03:00

10 lines
173 B
Fish

function night_mode_toggle
set target_process wlsunset
if pgrep $target_process >/dev/null
killall -s SIGINT wlsunset
else
wlsunset
end
end