12 lines
204 B
Fish
Executable file
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
|