18 lines
271 B
Bash
Executable File
18 lines
271 B
Bash
Executable File
#! /bin/sh
|
|
|
|
rofi_cmd() {
|
|
rofi -dmenu \
|
|
-theme ~/.config/rofi/powermenu.rasi
|
|
}
|
|
|
|
chosen=$(printf "⏻ poweroff\n reboot\n exit" | rofi_cmd)
|
|
|
|
case "$chosen" in
|
|
|
|
"⏻ poweroff") poweroff ;;
|
|
" reboot") reboot ;;
|
|
" exit") bspc quit ;;
|
|
*) exit 1 ;;
|
|
|
|
esac
|