generated from andy/linux-nixos-hyprland-config-dotfiles
10 lines
173 B
Fish
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
|