10 lines
304 B
Bash
Executable File
10 lines
304 B
Bash
Executable File
|
|
choice=$(printf "Shutdown\nReboot\nSuspend\nLogout" | rofi -dmenu -theme ayu-retro -p "╔═[ SYSTEM MENU ]═╗")
|
|
|
|
case "$choice" in
|
|
" Shutdown") systemctl poweroff ;;
|
|
" Reboot") systemctl reboot ;;
|
|
" Suspend") systemctl suspend ;;
|
|
" Logout") i3-msg exit ;; # adjust for your WM
|
|
esac
|