From 207f811e47df545d40858ad9244d67be2961b29d Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Mon, 7 Jul 2025 11:09:10 -0700 Subject: [PATCH] Be more precise than sleep --- bin/omarchy-power-menu | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/omarchy-power-menu b/bin/omarchy-power-menu index 1bc444a..5287a4c 100755 --- a/bin/omarchy-power-menu +++ b/bin/omarchy-power-menu @@ -6,7 +6,7 @@ # Function to show power menu. The first characters are invisible sort keys. show_power_menu() { local menu_options="\u200B Lock -\u200C󰤄 Sleep +\u200C󰤄 Suspend \u200D Relaunch \u2060󰜉 Restart 󰐥\u2063 Shutdown" @@ -14,7 +14,7 @@ show_power_menu() { case "$selection" in *Lock*) hyprlock ;; - *Sleep*) systemctl suspend ;; + *Suspend*) systemctl suspend ;; *Relaunch*) hyprctl dispatch exit ;; *Restart*) systemctl reboot ;; *Shutdown*) systemctl poweroff ;;