7 lines
139 B
Plaintext
7 lines
139 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
case "$(printf "shutdown\\nreboot" | dmenu -l 2 -p "Choose your poison")" in
|
||
|
"shutdown") poweroff ;;
|
||
|
"reboot") reboot ;;
|
||
|
esac
|