dotfiles/home/Scripts/sway-exit.sh
Marko Korhonen 186d05c678 Switched sway exit script to use systemd
Signed-off-by: Marko Korhonen <marko.korhonen@reekynet.com>
2020-01-12 15:35:49 +02:00

31 lines
359 B
Bash
Executable file

#!/bin/bash
RESP=$(cat <<EOF | fzf +s --tac
Shutdown
Reboot
Suspend
Lock
Exit
EOF
);
case "$RESP" in
Shutdown)
systemctl poweroff
;;
Reboot)
systemctl reboot
;;
Suspend)
systemctl suspend
;;
Lock)
loginctl lock-session $(loginctl show-user $USER -p Sessions | cut -d'=' -f2)
;;
Exit)
systemctl --user stop sway
;;
*)
exit 1
esac