No needless exit wounds

This commit is contained in:
David Heinemeier Hansson
2026-07-23 16:47:20 -07:00
parent 85a8453e20
commit 534746e05b
+2 -4
View File
@@ -7,10 +7,7 @@ o.bind("SUPER + SHIFT + B", "Browser", { omarchy = "browser" })
o.bind("SUPER + SHIFT + ALT + B", "Browser (private)", { omarchy = "browser --private" }) o.bind("SUPER + SHIFT + ALT + B", "Browser (private)", { omarchy = "browser --private" })
o.bind("SUPER + SHIFT + N", "Editor", { omarchy = "editor" }) o.bind("SUPER + SHIFT + N", "Editor", { omarchy = "editor" })
if not o.preinstalled_bindings_enabled() then if o.preinstalled_bindings_enabled() then
return
end
-- Bindings for preinstalled Omarchy applications, TUIs, and web apps. -- Bindings for preinstalled Omarchy applications, TUIs, and web apps.
o.bind("SUPER + ALT + RETURN", "Tmux", { omarchy = "terminal-tmux" }) o.bind("SUPER + ALT + RETURN", "Tmux", { omarchy = "terminal-tmux" })
o.bind("SUPER + SHIFT + M", "Music", { omarchy = "spotify" }) o.bind("SUPER + SHIFT + M", "Music", { omarchy = "spotify" })
@@ -33,3 +30,4 @@ o.bind("SUPER + SHIFT + P", "Google Photos", { webapp = "https://photos.google.c
o.bind("SUPER + SHIFT + S", "Google Maps", { webapp = "https://maps.google.com/", focus = true }) o.bind("SUPER + SHIFT + S", "Google Maps", { webapp = "https://maps.google.com/", focus = true })
o.bind("SUPER + SHIFT + X", "X", { webapp = "https://x.com/" }) o.bind("SUPER + SHIFT + X", "X", { webapp = "https://x.com/" })
o.bind("SUPER + SHIFT + ALT + X", "X Post", { webapp = "https://x.com/compose/post" }) o.bind("SUPER + SHIFT + ALT + X", "X Post", { webapp = "https://x.com/compose/post" })
end