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