From 507059e548d0f051c050df00e49609c176c24fe2 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Mon, 10 Aug 2026 18:22:19 +0200 Subject: [PATCH] Open Herdr with SUPER + CTRL + RETURN Mirrors the Tmux binding on SUPER + ALT + RETURN. Herdr reattaches to the persistent session on its own, so the launcher needs no attach-or-create dance. --- bin/omarchy-launch-terminal-herdr | 5 +++++ default/hypr/bindings/applications.lua | 1 + 2 files changed, 6 insertions(+) create mode 100755 bin/omarchy-launch-terminal-herdr diff --git a/bin/omarchy-launch-terminal-herdr b/bin/omarchy-launch-terminal-herdr new file mode 100755 index 00000000..48e898e2 --- /dev/null +++ b/bin/omarchy-launch-terminal-herdr @@ -0,0 +1,5 @@ +#!/bin/bash + +# omarchy:summary=Launch or attach to the persistent herdr session in a terminal + +exec omarchy-launch-terminal herdr diff --git a/default/hypr/bindings/applications.lua b/default/hypr/bindings/applications.lua index e3a7a8e3..151a3fea 100644 --- a/default/hypr/bindings/applications.lua +++ b/default/hypr/bindings/applications.lua @@ -10,6 +10,7 @@ o.bind("SUPER + SHIFT + N", "Editor", { omarchy = "editor" }) if o.preinstalled_bindings_enabled() then -- Bindings for preinstalled Omarchy applications, TUIs, and web apps. o.bind("SUPER + ALT + RETURN", "Tmux", { omarchy = "terminal-tmux" }) + o.bind("SUPER + CTRL + RETURN", "Herdr", { omarchy = "terminal-herdr" }) o.bind("SUPER + SHIFT + M", "Music", { omarchy = "spotify" }) o.bind("SUPER + SHIFT + ALT + M", "Music TUI", { tui = "cliamp", focus = true }) o.bind("SUPER + SHIFT + D", "Docker", { tui = "lazydocker" })