21 lines
317 B
Plaintext
21 lines
317 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
test=$(echo -e "Shutdown\nLogout\nSuspend\nReboot\nCancel" | dmenu -i -p "$1")
|
||
|
|
||
|
case "$test" in
|
||
|
Shutdown)
|
||
|
poweroff
|
||
|
;;
|
||
|
Logout)
|
||
|
#herbstclient quit
|
||
|
killall xinit
|
||
|
;;
|
||
|
Suspend)
|
||
|
systemctl suspend
|
||
|
;;
|
||
|
Reboot)
|
||
|
reboot
|
||
|
;;
|
||
|
esac
|
||
|
|