Files
omarchy/bin/omarchy-power-menu
David Heinemeier Hansson 00b621d7d7 Tweak the menu options
2025-07-06 15:11:56 -07:00

37 lines
671 B
Bash
Executable File

#!/bin/bash
# Power menu for Omarchy
# Provides power off, restart, and sleep options
# Function to show power menu
show_power_menu() {
local menu_options=" Lock
󰤄 Sleep
󰜉 Restart
󰐥 Shutdown"
# Show menu and get selection
local selection=$(echo -e "$menu_options" | wofi --show dmenu --prompt "Power Options" --width 200 --height 250)
if [ -n "$selection" ]; then
case "$selection" in
"󰐥 Shutdown")
systemctl poweroff
;;
"󰜉 Restart")
systemctl reboot
;;
"󰤄 Sleep")
systemctl suspend
;;
" Lock")
hyprlock
;;
*) ;;
esac
fi
}
# Main execution
show_power_menu