1
0
Fork 0
mirror of https://github.com/Horhik/dotfiles.git synced 2024-09-18 21:47:51 +00:00
Dotfiles/.config/polybar/scripts/powermenu

12 lines
451 B
Plaintext
Raw Normal View History

2020-07-27 04:59:00 +00:00
#!/bin/bash
## Created By Aditya Shakya
MENU="$(rofi -sep "|" -dmenu -i -p 'System' -location 5 -xoffset -10 -yoffset -40 -width 10 -hide-scrollbar -line-padding 4 -padding 20 -lines 4 <<< "> Lock|> Logout|> Reboot|> Shutdown")"
case "$MENU" in
*Lock) i3lock-fancy ;;
*Logout) openbox --exit;;
*Reboot) systemctl reboot ;;
*Shutdown) systemctl -i poweroff
esac