2024-01-29 13:48:01 -05:00
|
|
|
case `printf "Cancel\nSuspend\nPower Off\nReboot\nLog Out" | $DMENU_COMMAND` in
|
2024-01-29 13:43:19 -05:00
|
|
|
"Cancel")
|
|
|
|
|
:
|
|
|
|
|
;;
|
|
|
|
|
"Suspend")
|
|
|
|
|
systemctl suspend
|
|
|
|
|
;;
|
|
|
|
|
"Power Off")
|
|
|
|
|
systemctl poweroff
|
|
|
|
|
;;
|
|
|
|
|
"Reboot")
|
|
|
|
|
systemctl reboot
|
|
|
|
|
;;
|
|
|
|
|
"Log Out")
|
2024-01-30 15:21:59 -05:00
|
|
|
swaymsg exit
|
2024-01-29 13:43:19 -05:00
|
|
|
;;
|
2024-01-29 13:48:01 -05:00
|
|
|
esac
|