11 lines
331 B
Bash
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 |