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