mirror of
https://github.com/XNM1/linux-nixos-hyprland-config-dotfiles.git
synced 2025-09-15 09:45:58 +03:00
9 lines
363 B
Fish
9 lines
363 B
Fish
function check_night_mode
|
|
set target_process "gammastep"
|
|
|
|
if pgrep $target_process > /dev/null
|
|
echo "{ \"text\":\"\", \"tooltip\": \"night-mode <span color='#a6da95'>on</span>\", \"class\": \"on\" }"
|
|
else
|
|
echo "{ \"text\":\"\", \"tooltip\": \"night-mode <span color='#ee99a0'>off</span>\", \"class\": \"off\" }"
|
|
end
|
|
end |