dotfiles/.bin/powermenu.sh
2024-08-27 22:43:33 +07:00

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