11 lines
272 B
Bash
Executable file
11 lines
272 B
Bash
Executable file
#!/bin/sh
|
|
|
|
|
|
case "$(printf " Poweroff \\n Restart \\n Suspend \\n Hibernate " | bemenu -l 4 -p "" -i)" in
|
|
|
|
" Poweroff ") sudo -- poweroff ;;
|
|
" Restart ") sudo -- reboot ;;
|
|
" Suspend ") sudo -- loginctl suspend ;;
|
|
" Hibernate ") sudo -- loginctl hibernate ;;
|
|
|
|
esac
|