.dotfiles/.config/sway/power.fish
2024-10-21 21:34:03 +03:00

12 lines
204 B
Fish
Executable file

#!/usr/bin/fish
set action (echo -e "hibernate\nreboot\npoweroff\nsuspend\nlock" | rofi -dmenu -p "to:")
if test "$action" = "lock"
swaylock
exit
end
if test "$action" != ""
systemctl $action
end