18 lines
302 B
Bash
Executable File
18 lines
302 B
Bash
Executable File
#!/bin/bash
|
|
|
|
options="Shutdown\nReboot\nLogout"
|
|
|
|
selected=$(echo -e $options | rofi -p Power -dmenu -theme appsmenu)
|
|
|
|
case $selected in
|
|
"Shutdown")
|
|
confirm-menu "Shutdown?" "poweroff"
|
|
;;
|
|
"Reboot")
|
|
confirm-menu "Reboot?" "reboot"
|
|
;;
|
|
"Logout")
|
|
confirm-menu "Logout?" "i3-msg exit"
|
|
;;
|
|
esac
|