From 97fe964e000ddff1f368726149a00de5b7681d50 Mon Sep 17 00:00:00 2001 From: Ivan Molodetskikh Date: Mon, 11 Nov 2024 17:56:35 +0300 Subject: Make consume-or-expel binds more prominent I find myself using them much more than regular consume or expel. --- resources/default-config.kdl | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'resources') diff --git a/resources/default-config.kdl b/resources/default-config.kdl index 6a89f1b1..e3f06f49 100644 --- a/resources/default-config.kdl +++ b/resources/default-config.kdl @@ -441,15 +441,17 @@ binds { // Switches focus between the current and the previous workspace. // Mod+Tab { focus-workspace-previous; } + // The following binds move the focused window in and out of a column. + // If the window is alone, they will consume it into the nearby column to the side. + // IF the window is already in a column, they will expel it out. + Mod+BracketLeft { consume-or-expel-window-left; } + Mod+BracketRight { consume-or-expel-window-right; } + // Consume one window from the right into the focused column. Mod+Comma { consume-window-into-column; } // Expel one window from the focused column to the right. Mod+Period { expel-window-from-column; } - // There are also commands that consume or expel a single window to the side. - Mod+BracketLeft { consume-or-expel-window-left; } - Mod+BracketRight { consume-or-expel-window-right; } - Mod+R { switch-preset-column-width; } Mod+Shift+R { switch-preset-window-height; } Mod+Ctrl+R { reset-window-height; } -- cgit