From 826d9f4e2f231bd11d09dc6876d81cfa8d9633c1 Mon Sep 17 00:00:00 2001 From: Pierre Olivier Martel Date: Wed, 22 Apr 2026 16:04:27 -0400 Subject: [PATCH 1/3] Use the code instead so this mapping works with non US English keyboards too (#5391) --- default/hypr/bindings/tiling-v2.conf | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/default/hypr/bindings/tiling-v2.conf b/default/hypr/bindings/tiling-v2.conf index 4560c521..cdb928c3 100644 --- a/default/hypr/bindings/tiling-v2.conf +++ b/default/hypr/bindings/tiling-v2.conf @@ -128,6 +128,6 @@ bindd = SUPER ALT, code:12, Switch to group window 3, changegroupactive, 3 bindd = SUPER ALT, code:13, Switch to group window 4, changegroupactive, 4 bindd = SUPER ALT, code:14, Switch to group window 5, changegroupactive, 5 -# Cycle monitor scaling -bindd = SUPER, Slash, Cycle monitor scaling, exec, omarchy-hyprland-monitor-scaling-cycle -bindd = SUPER ALT, Slash, Cycle monitor scaling backwards, exec, omarchy-hyprland-monitor-scaling-cycle --reverse +# Cycle monitor scaling with SUPER + / +bindd = SUPER, code:61, Cycle monitor scaling, exec, omarchy-hyprland-monitor-scaling-cycle +bindd = SUPER ALT, code:61, Cycle monitor scaling backwards, exec, omarchy-hyprland-monitor-scaling-cycle --reverse From f9f08580df40d7ef2f9278418a8d9337d67ea12c Mon Sep 17 00:00:00 2001 From: James Maina <68908122+endafk@users.noreply.github.com> Date: Wed, 22 Apr 2026 23:06:54 +0300 Subject: [PATCH 2/3] Lowercase theme name in omarchy-theme-install to match omarchy-theme-set (#5392) --- bin/omarchy-theme-install | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/omarchy-theme-install b/bin/omarchy-theme-install index 0c0f0c4e..5949c7ea 100755 --- a/bin/omarchy-theme-install +++ b/bin/omarchy-theme-install @@ -15,7 +15,7 @@ if [[ -z $REPO_URL ]]; then fi THEMES_DIR="$HOME/.config/omarchy/themes" -THEME_NAME=$(basename "$REPO_URL" .git | sed -E 's/^omarchy-//; s/-theme$//') +THEME_NAME=$(basename "$REPO_URL" .git | sed -E 's/^omarchy-//; s/-theme$//' | tr '[:upper:]' '[:lower:]') THEME_PATH="$THEMES_DIR/$THEME_NAME" # Remove existing theme if present From bc53a0a7c59fd9aa35e323b5256cefaf52513820 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Wed, 22 Apr 2026 22:18:32 +0200 Subject: [PATCH 3/3] Does not look like we needed that change after all --- themes/catppuccin/neovim.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/themes/catppuccin/neovim.lua b/themes/catppuccin/neovim.lua index f0d503f9..f22267d6 100644 --- a/themes/catppuccin/neovim.lua +++ b/themes/catppuccin/neovim.lua @@ -7,7 +7,7 @@ return { { "LazyVim/LazyVim", opts = { - colorscheme = "catppuccin-nvim", + colorscheme = "catppuccin", }, }, }