From da990e0c9fcdfb483a81c76f58a3ed6ec7e7049e Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Sat, 28 Feb 2026 20:44:54 +0100 Subject: [PATCH 1/2] Include Shift + Return as default for browser --- config/hypr/bindings.conf | 1 + 1 file changed, 1 insertion(+) diff --git a/config/hypr/bindings.conf b/config/hypr/bindings.conf index 985832fc..71d36c9c 100644 --- a/config/hypr/bindings.conf +++ b/config/hypr/bindings.conf @@ -1,6 +1,7 @@ # Application bindings bindd = SUPER, RETURN, Terminal, exec, uwsm-app -- xdg-terminal-exec --dir="$(omarchy-cmd-terminal-cwd)" bindd = SUPER ALT, RETURN, Tmux, exec, uwsm-app -- xdg-terminal-exec --dir="$(omarchy-cmd-terminal-cwd)" tmux new +bindd = SUPER SHIFT, RETURN, Browser, exec, omarchy-launch-browser bindd = SUPER SHIFT, F, File manager, exec, uwsm-app -- nautilus --new-window bindd = SUPER ALT SHIFT, F, File manager (cwd), exec, uwsm-app -- nautilus --new-window "$(omarchy-cmd-terminal-cwd)" bindd = SUPER SHIFT, B, Browser, exec, omarchy-launch-browser From 14765466fb222b35f4e999c06519b2125915fd1c Mon Sep 17 00:00:00 2001 From: Arcangelo Massari Date: Wed, 4 Mar 2026 02:28:09 +0100 Subject: [PATCH 2/2] Fix White theme name mismatch for VS Code/Codium (#4858) The White theme's vscode.json specified "White Omarchy" as the theme name, but the Bjarne.white-theme extension registers the theme as "White". This mismatch caused omarchy-theme-set-vscode to set workbench.colorTheme to a non-existent theme name. --- themes/white/vscode.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/themes/white/vscode.json b/themes/white/vscode.json index 88d16fcd..70019ac5 100644 --- a/themes/white/vscode.json +++ b/themes/white/vscode.json @@ -1,4 +1,4 @@ { - "name": "White Omarchy", + "name": "White", "extension": "Bjarne.white-theme" }