From 8510a819214889ecc25e13602c379ae49b752005 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Thu, 21 May 2026 13:31:28 +0200 Subject: [PATCH] Toggle weather panel from shortcut --- bin/omarchy-notification-weather | 4 ++-- default/hypr/bindings/utilities.lua | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bin/omarchy-notification-weather b/bin/omarchy-notification-weather index 8187e4c9..b41e5abd 100755 --- a/bin/omarchy-notification-weather +++ b/bin/omarchy-notification-weather @@ -1,5 +1,5 @@ #!/bin/bash -# omarchy:summary=Show the current weather notification +# omarchy:summary=Toggle the current weather panel -omarchy-shell Weather show +omarchy-shell Weather toggle diff --git a/default/hypr/bindings/utilities.lua b/default/hypr/bindings/utilities.lua index e810f9ba..0926a6cd 100644 --- a/default/hypr/bindings/utilities.lua +++ b/default/hypr/bindings/utilities.lua @@ -51,7 +51,7 @@ o.bind("SUPER + SHIFT + CTRL + R", "Clear reminders", "omarchy-reminder clear") o.bind("SUPER + CTRL + ALT + T", "Show time", "omarchy-notification-time") o.bind("SUPER + CTRL + ALT + B", "Show battery remaining", "omarchy-notification-battery") -o.bind("SUPER + CTRL + ALT + W", "Show weather", "omarchy-notification-weather") +o.bind("SUPER + CTRL + ALT + W", "Toggle weather", "omarchy-notification-weather") o.bind("SUPER + CTRL + A", "Audio panel", "omarchy-shell panels.audio toggle") o.bind("SUPER + CTRL + B", "Bluetooth panel", "omarchy-shell panels.bluetooth toggle")