arch-setup/files/scripts/power.sh
2026-03-16 13:58:03 +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