From 63840c6e9a73da979b1f86bc3c77da6941eed933 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Sat, 2 Aug 2025 14:44:01 +0200 Subject: [PATCH] Add screensaver as an option in the power menu --- bin/omarchy-menu-power | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bin/omarchy-menu-power b/bin/omarchy-menu-power index 56e005e..94e0fc0 100755 --- a/bin/omarchy-menu-power +++ b/bin/omarchy-menu-power @@ -3,6 +3,7 @@ show_power_menu() { # The first characters are invisible sort keys. local menu_options=" Lock +󱄄 Save 󰤄 Suspend  Relaunch 󰜉 Restart @@ -11,6 +12,7 @@ show_power_menu() { case "$selection" in *Lock*) hyprlock ;; + *Show*) ~/.local/share/omarchy/bin/omarchy-launch-screensaver ;; *Suspend*) systemctl suspend ;; *Relaunch*) uwsm stop ;; *Restart*) systemctl reboot ;;