18 lines
302 B
Plaintext
18 lines
302 B
Plaintext
|
#!/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
|