arch-setup/files/power.sh
2026-03-11 07:51:46 +01:00

9 lines
No EOL
241 B
Bash
Executable file

#!/bin/bash
CHOICE=$(echo -e "Shutdown\nReboot\nHyprlock\nSuspend" | wofi --dmenu)
case $CHOICE in
Shutdown) systemctl poweroff ;;
Reboot) systemctl reboot ;;
Hyprlock) hyprctl dispatch dpms off ;;
Suspend) systemctl suspend ;;
esac