niri: shift around keybinds to make room for workspace moves
This commit is contained in:
parent
7c52d0c6f4
commit
515b62ddcc
1 changed files with 25 additions and 33 deletions
|
@ -97,7 +97,7 @@ layout {
|
||||||
// preset-window-heights { }
|
// preset-window-heights { }
|
||||||
|
|
||||||
// You can change the default width of the new windows.
|
// You can change the default width of the new windows.
|
||||||
default-column-width { proportion 0.33333; }
|
default-column-width { proportion 0.5; }
|
||||||
// If you leave the brackets empty, the windows themselves will decide their initial width.
|
// If you leave the brackets empty, the windows themselves will decide their initial width.
|
||||||
// default-column-width {}
|
// default-column-width {}
|
||||||
|
|
||||||
|
@ -306,14 +306,14 @@ binds {
|
||||||
Mod+K { focus-window-up; }
|
Mod+K { focus-window-up; }
|
||||||
Mod+L { focus-column-right; }
|
Mod+L { focus-column-right; }
|
||||||
|
|
||||||
Mod+Ctrl+Left { move-column-left; }
|
Mod+Shift+Left { move-column-left; }
|
||||||
Mod+Ctrl+Down { move-window-down; }
|
Mod+Shift+Down { move-window-down; }
|
||||||
Mod+Ctrl+Up { move-window-up; }
|
Mod+Shift+Up { move-window-up; }
|
||||||
Mod+Ctrl+Right { move-column-right; }
|
Mod+Shift+Right { move-column-right; }
|
||||||
Mod+Ctrl+H { move-column-left; }
|
Mod+Shift+H { move-column-left; }
|
||||||
Mod+Ctrl+J { move-window-down; }
|
Mod+Shift+J { move-window-down; }
|
||||||
Mod+Ctrl+K { move-window-up; }
|
Mod+Shift+K { move-window-up; }
|
||||||
Mod+Ctrl+L { move-column-right; }
|
Mod+Shift+L { move-column-right; }
|
||||||
|
|
||||||
// Alternative commands that move across workspaces when reaching
|
// Alternative commands that move across workspaces when reaching
|
||||||
// the first or last window in a column.
|
// the first or last window in a column.
|
||||||
|
@ -327,31 +327,23 @@ binds {
|
||||||
Mod+Ctrl+Home { move-column-to-first; }
|
Mod+Ctrl+Home { move-column-to-first; }
|
||||||
Mod+Ctrl+End { move-column-to-last; }
|
Mod+Ctrl+End { move-column-to-last; }
|
||||||
|
|
||||||
Mod+Shift+Left { focus-monitor-left; }
|
Mod+Ctrl+Left { focus-monitor-left; }
|
||||||
Mod+Shift+Down { focus-monitor-down; }
|
Mod+Ctrl+Down { focus-monitor-down; }
|
||||||
Mod+Shift+Up { focus-monitor-up; }
|
Mod+Ctrl+Up { focus-monitor-up; }
|
||||||
Mod+Shift+Right { focus-monitor-right; }
|
Mod+Ctrl+Right { focus-monitor-right; }
|
||||||
Mod+Shift+H { focus-monitor-left; }
|
Mod+Ctrl+H { focus-monitor-left; }
|
||||||
Mod+Shift+J { focus-monitor-down; }
|
Mod+Ctrl+J { focus-monitor-down; }
|
||||||
Mod+Shift+K { focus-monitor-up; }
|
Mod+Ctrl+K { focus-monitor-up; }
|
||||||
Mod+Shift+L { focus-monitor-right; }
|
Mod+Ctrl+L { focus-monitor-right; }
|
||||||
|
|
||||||
Mod+Shift+Ctrl+Left { move-column-to-monitor-left; }
|
Mod+Shift+Ctrl+Left { move-workspace-to-monitor-left; }
|
||||||
Mod+Shift+Ctrl+Down { move-column-to-monitor-down; }
|
Mod+Shift+Ctrl+Down { move-workspace-to-monitor-down; }
|
||||||
Mod+Shift+Ctrl+Up { move-column-to-monitor-up; }
|
Mod+Shift+Ctrl+Up { move-workspace-to-monitor-up; }
|
||||||
Mod+Shift+Ctrl+Right { move-column-to-monitor-right; }
|
Mod+Shift+Ctrl+Right { move-workspace-to-monitor-right; }
|
||||||
Mod+Shift+Ctrl+H { move-column-to-monitor-left; }
|
Mod+Shift+Ctrl+H { move-workspace-to-monitor-left; }
|
||||||
Mod+Shift+Ctrl+J { move-column-to-monitor-down; }
|
Mod+Shift+Ctrl+J { move-workspace-to-monitor-down; }
|
||||||
Mod+Shift+Ctrl+K { move-column-to-monitor-up; }
|
Mod+Shift+Ctrl+K { move-workspace-to-monitor-up; }
|
||||||
Mod+Shift+Ctrl+L { move-column-to-monitor-right; }
|
Mod+Shift+Ctrl+L { move-workspace-to-monitor-right; }
|
||||||
|
|
||||||
// Alternatively, there are commands to move just a single window:
|
|
||||||
// Mod+Shift+Ctrl+Left { move-window-to-monitor-left; }
|
|
||||||
// ...
|
|
||||||
|
|
||||||
// And you can also move a whole workspace to another monitor:
|
|
||||||
// Mod+Shift+Ctrl+Left { move-workspace-to-monitor-left; }
|
|
||||||
// ...
|
|
||||||
|
|
||||||
Mod+Page_Down { focus-workspace-down; }
|
Mod+Page_Down { focus-workspace-down; }
|
||||||
Mod+Page_Up { focus-workspace-up; }
|
Mod+Page_Up { focus-workspace-up; }
|
||||||
|
|
Loading…
Add table
Reference in a new issue