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.
This commit is contained in:
David Heinemeier Hansson
2026-08-10 18:44:19 +02:00
parent 932efbd58b
commit 507059e548
2 changed files with 6 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
#!/bin/bash
# omarchy:summary=Launch or attach to the persistent herdr session in a terminal
exec omarchy-launch-terminal herdr
+1
View File
@@ -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" })