11 lines
454 B
Plaintext
11 lines
454 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
|
||
|
MENU="$(rofi -sep "|" -dmenu -i -p 'System' -location 3 -yoffset 32 -xoffset -10 -width 12 -hide-scrollbar -line-padding 4 -padding 20 -lines 4 -font "Misc Termsyn 12" <<< " Lock| Logout| Reboot| Shutdown")"
|
||
|
case "$MENU" in
|
||
|
*Lock) i3lock-fancy ;;
|
||
|
*Logout) openbox --exit;;
|
||
|
*Reboot) systemctl reboot ;;
|
||
|
*Shutdown) systemctl -i poweroff
|
||
|
esac
|