Files
omarchy/bin/omarchy-menu-power

22 lines
480 B
Plaintext
Raw Normal View History

2025-07-05 17:12:03 +10:00
#!/bin/bash
show_power_menu() {
2025-07-18 23:00:42 -05:00
# The first characters are invisible sort keys.
local menu_options="\u200B Lock
2025-07-07 11:09:10 -07:00
\u200C󰤄 Suspend
\u200D Relaunch
\u2060󰜉 Restart
2025-07-07 11:19:29 -07:00
\u2063󰐥 Shutdown"
local selection=$(echo -e "$menu_options" | walker --dmenu --theme dmenu_150)
2025-07-06 15:11:56 -07:00
case "$selection" in
*Lock*) hyprlock ;;
2025-07-07 11:09:10 -07:00
*Suspend*) systemctl suspend ;;
*Relaunch*) uwsm stop ;;
*Restart*) systemctl reboot ;;
*Shutdown*) systemctl poweroff ;;
esac
2025-07-05 17:12:03 +10:00
}
2025-07-06 15:11:56 -07:00
show_power_menu