nix-dotfiles/scripts/shutdownmenu.sh
vorboyvo 8898a6cc13 Reorganized packages list a bit
Added xdg-terminal-exec
Added papirus icon theme; not yet active
Enabled fcitx for sway
Enabled sway autolaunch on login in tty1
Set git config
2024-01-30 15:21:59 -05:00

18 lines
249 B
Bash

case `printf "Cancel\nSuspend\nPower Off\nReboot\nLog Out" | $DMENU_COMMAND` in
"Cancel")
:
;;
"Suspend")
systemctl suspend
;;
"Power Off")
systemctl poweroff
;;
"Reboot")
systemctl reboot
;;
"Log Out")
swaymsg exit
;;
esac