Files
bspwm-install-mde/config/rofi/powermenu.sh
2022-01-07 11:17:07 +01:00

11 lines
331 B
Bash

#! /bin/sh
# https://github.com/ericmurphyxyz/archrice
chosen=$(printf " Power Off\n Restart\n Lock" | rofi -dmenu -i -theme-str '@import "powermenu.rasi"')
case "$chosen" in
" Power Off") systemctl poweroff ;;
" Restart") systemctl reboot ;;
" Lock") i3lock-fancy -gp -- scrot -z ;;
*) exit 1 ;;
esac