mirror of
https://git.korhonen.cc/FunctionalHacker/dotfiles.git
synced 2024-11-04 18:00:20 +00:00
27 lines
235 B
Bash
27 lines
235 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
RESP=$(cat <<EOF | fzf
|
||
|
Exit
|
||
|
Sleep
|
||
|
Reboot
|
||
|
Shutdown
|
||
|
EOF
|
||
|
);
|
||
|
|
||
|
case "$RESP" in
|
||
|
Exit)
|
||
|
swaymsg exit
|
||
|
;;
|
||
|
Sleep)
|
||
|
systemctl suspend
|
||
|
;;
|
||
|
Reboot)
|
||
|
systemctl reboot
|
||
|
;;
|
||
|
Shutdown)
|
||
|
systemctl poweroff
|
||
|
;;
|
||
|
*)
|
||
|
exit 1
|
||
|
esac
|