nix-dotfiles/scripts/shutdownmenu.sh

17 lines
250 B
Bash
Raw Normal View History

case `printf "Cancel\nSuspend\nPower Off\nReboot\nLog Out" | sh dmenu.sh` in
"Cancel")
:
;;
"Suspend")
systemctl suspend
;;
"Power Off")
systemctl poweroff
;;
"Reboot")
systemctl reboot
;;
"Log Out")
loginctl kill-session
;;