17 lines
250 B
Bash
17 lines
250 B
Bash
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
|
|
;;
|