dotfiles/home/Scripts/sway-exit.sh

27 lines
235 B
Bash
Raw Normal View History

#!/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