9 lines
188 B
Plaintext
9 lines
188 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
# simple power menu script
|
||
|
|
||
|
case "$(printf "shutdown\\nreboot" | dmenu -p "Choose your poison")" in
|
||
|
"shutdown") systemctl poweroff ;;
|
||
|
"reboot") systemctl reboot ;;
|
||
|
esac
|