mirror of
https://github.com/Horhik/dotfiles.git
synced 2024-11-02 23:17:18 +00:00
12 lines
413 B
Bash
Executable file
12 lines
413 B
Bash
Executable file
#!/bin/bash
|
|
|
|
## Created By Aditya Shakya
|
|
|
|
MENU="$(rofi -sep "|" -dmenu -i -p 'System' -width 12 -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
|