From ff2ffe47b6ed21de5658dbd6db01feb309ffb236 Mon Sep 17 00:00:00 2001 From: funman300 Date: Thu, 16 Jul 2026 08:57:56 -0700 Subject: [PATCH] niri: arrow-key variants for focus and move binds Only the H/J/K/L letters were bound, so Mod+Shift+Left and friends did nothing. Add arrow equivalents next to the existing letter binds for both focusing and moving; the letter binds are unchanged. Co-Authored-By: Claude Opus 4.8 (1M context) --- niri/config.kdl | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/niri/config.kdl b/niri/config.kdl index 3b7fa8f..b65db03 100644 --- a/niri/config.kdl +++ b/niri/config.kdl @@ -64,11 +64,21 @@ binds { Mod+J { focus-window-down; } Mod+K { focus-window-up; } + Mod+Left { focus-column-left; } + Mod+Right { focus-column-right; } + Mod+Down { focus-window-down; } + Mod+Up { focus-window-up; } + Mod+Shift+H { move-column-left; } Mod+Shift+L { move-column-right; } Mod+Shift+J { move-window-down; } Mod+Shift+K { move-window-up; } + Mod+Shift+Left { move-column-left; } + Mod+Shift+Right { move-column-right; } + Mod+Shift+Down { move-window-down; } + Mod+Shift+Up { move-window-up; } + Mod+1 { focus-workspace 1; } Mod+2 { focus-workspace 2; } Mod+3 { focus-workspace 3; }