From bbdc485a62d6c8f82825b02deb5f809ab08ebd93 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Mon, 18 May 2026 15:54:21 +0200 Subject: [PATCH] Open the right panels --- default/hypr/bindings/utilities.lua | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/default/hypr/bindings/utilities.lua b/default/hypr/bindings/utilities.lua index eb5533a2..46477064 100644 --- a/default/hypr/bindings/utilities.lua +++ b/default/hypr/bindings/utilities.lua @@ -53,9 +53,10 @@ hl.bind("SUPER + CTRL + ALT + T", hl.dsp.exec_cmd("omarchy-notification-time"), hl.bind("SUPER + CTRL + ALT + B", hl.dsp.exec_cmd("omarchy-notification-battery"), { description = "Show battery remaining" }) hl.bind("SUPER + CTRL + ALT + W", hl.dsp.exec_cmd("omarchy-notification-weather"), { description = "Show weather" }) -hl.bind("SUPER + CTRL + A", hl.dsp.exec_cmd("omarchy-shell-ipc audioPanel toggle"), { description = "Audio panel" }) -hl.bind("SUPER + CTRL + B", hl.dsp.exec_cmd("omarchy-shell-ipc bluetoothPanel toggle"), { description = "Bluetooth panel" }) -hl.bind("SUPER + CTRL + W", hl.dsp.exec_cmd("omarchy-shell-ipc networkPanel toggle"), { description = "Wifi panel" }) +hl.bind("SUPER + CTRL + A", hl.dsp.exec_cmd("omarchy-shell audioPanel toggle"), { description = "Audio panel" }) +hl.bind("SUPER + CTRL + B", hl.dsp.exec_cmd("omarchy-shell bluetoothPanel toggle"), { description = "Bluetooth panel" }) +hl.bind("SUPER + CTRL + D", hl.dsp.exec_cmd("omarchy-shell monitorPanel toggle"), { description = "Display panel" }) +hl.bind("SUPER + CTRL + W", hl.dsp.exec_cmd("omarchy-shell networkPanel toggle"), { description = "Network panel" }) hl.bind("SUPER + CTRL + T", hl.dsp.exec_cmd("omarchy-launch-tui btop"), { description = "Activity" }) hl.bind("SUPER + CTRL + X", hl.dsp.exec_cmd("voxtype record toggle"), { description = "Toggle dictation" })