.dotfiles/.scripts/power.fish

14 lines
209 B
Fish
Executable file

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