2025-07-05 17:12:03 +10:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
# Power menu for Omarchy
|
|
|
|
# Provides power off, restart, and sleep options
|
|
|
|
|
2025-07-07 11:04:40 -07:00
|
|
|
# Function to show power menu. The first characters are invisible sort keys.
|
2025-07-05 17:12:03 +10:00
|
|
|
show_power_menu() {
|
2025-07-07 11:04:40 -07:00
|
|
|
local menu_options="\u200B Lock
|
2025-07-07 11:09:10 -07:00
|
|
|
\u200C Suspend
|
2025-07-07 11:04:40 -07:00
|
|
|
\u200D Relaunch
|
|
|
|
\u2060 Restart
|
2025-07-07 11:19:29 -07:00
|
|
|
\u2063 Shutdown"
|
2025-07-18 22:58:47 -05:00
|
|
|
local selection=$(echo -e "$menu_options" | wofi --show dmenu --width 150 --height 195 -O alphabetical --style ~/.config/wofi/select.css)
|
2025-07-06 15:11:56 -07:00
|
|
|
|
2025-07-06 18:41:12 -07:00
|
|
|
case "$selection" in
|
|
|
|
*Lock*) hyprlock ;;
|
2025-07-07 11:09:10 -07:00
|
|
|
*Suspend*) systemctl suspend ;;
|
2025-07-13 20:51:03 -04:00
|
|
|
*Relaunch*) uwsm stop ;;
|
2025-07-06 18:41:12 -07:00
|
|
|
*Restart*) systemctl reboot ;;
|
|
|
|
*Shutdown*) systemctl poweroff ;;
|
|
|
|
esac
|
2025-07-05 17:12:03 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
# Main execution
|
2025-07-06 15:11:56 -07:00
|
|
|
show_power_menu
|