2023-07-27 03:37:48 +02:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
SELECTION=$(echo "cancel
|
|
|
|
logout
|
|
|
|
reboot
|
2023-09-20 12:59:07 +02:00
|
|
|
suspend
|
|
|
|
shutdown" | eval "dmenu $DMENU_COLORS")
|
2023-07-27 03:37:48 +02:00
|
|
|
|
|
|
|
case $SELECTION in
|
|
|
|
shutdown )
|
2023-09-20 12:59:07 +02:00
|
|
|
sudo systemctl poweroff ;;
|
2023-07-27 03:37:48 +02:00
|
|
|
reboot )
|
|
|
|
sudo systemctl reboot ;;
|
|
|
|
suspend )
|
|
|
|
sudo systemctl suspend ;;
|
|
|
|
logout )
|
|
|
|
swaymsg exit ;;
|
|
|
|
esac
|
|
|
|
|