2025-06-22 21:18:32 +03:00

14 lines
403 B
Bash
Executable File

#!/bin/bash
choice=$(echo -e "⏻ Shutdown\n Reboot\n Lock\n Logout\n Suspend\n Hibernate\nCancel" | wofi --dmenu --width=250 --height=300 --prompt="Power Menu")
case "$choice" in
*Shutdown) systemctl poweroff ;;
*Reboot) systemctl reboot ;;
*Lock) hyprlock ;;
*Logout) hyprctl dispatch exit ;;
*Suspend) systemctl suspend ;;
*Hibernate) systemctl hibernate ;;
*) ;;
esac