From 0939ac9d1ef5f3606ce98298f72db596fa4368b8 Mon Sep 17 00:00:00 2001 From: tikaiz Date: Mon, 29 Sep 2025 10:17:10 +0200 Subject: [PATCH] added keybinds for navigation with arrow keys --- niri/config.kdl | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/niri/config.kdl b/niri/config.kdl index 0633e96..c0e0e0f 100644 --- a/niri/config.kdl +++ b/niri/config.kdl @@ -327,7 +327,6 @@ layout { // This line starts waybar, a commonly used bar for Wayland compositors. spawn-at-startup "waybar" -spawn-at-startup "iwqt" spawn-at-startup "nm-applet" // Uncomment this line to ask the clients to omit their client-side decorations if possible. @@ -444,18 +443,26 @@ binds { Mod+Q { close-window; } Mod+Left { focus-column-left; } + Mod5+Left { focus-column-left; } Mod+Down { focus-window-or-workspace-down; } + Mod5+Down { focus-window-or-workspace-down; } Mod+Up { focus-window-or-workspace-up; } + Mod5+Up { focus-window-or-workspace-up; } Mod+Right { focus-column-right; } + Mod5+Right { focus-column-right; } Mod+H { focus-column-left; } Mod+J { focus-window-or-workspace-down; } Mod+K { focus-window-or-workspace-up; } Mod+L { focus-column-right; } Mod+Ctrl+Left { move-column-left; } + Mod5+Ctrl+Left { move-column-left; } Mod+Ctrl+Down { move-column-to-workspace-down; } + Mod5+Ctrl+Down { move-column-to-workspace-down; } Mod+Ctrl+Up { move-column-to-workspace-up; } + Mod5+Ctrl+Up { move-column-to-workspace-up; } Mod+Ctrl+Right { move-column-right; } + Mod5+Ctrl+Right { move-column-right; } Mod+Ctrl+H { move-column-left; } Mod+Ctrl+J { move-window-down; } Mod+Ctrl+K { move-window-up; }