diff options
| author | Ivan Molodetskikh <yalterz@gmail.com> | 2024-03-23 08:49:58 +0400 |
|---|---|---|
| committer | Ivan Molodetskikh <yalterz@gmail.com> | 2024-03-23 08:49:58 +0400 |
| commit | b09dbb80c7c507f34e194f2c5420054608cbf732 (patch) | |
| tree | 1bb00a0d8f0e022339b45778c61b9b7d01cb7169 /resources | |
| parent | 54e6a01284effb5d1addc3ad386f124afa9aade2 (diff) | |
| download | niri-b09dbb80c7c507f34e194f2c5420054608cbf732.tar.gz niri-b09dbb80c7c507f34e194f2c5420054608cbf732.tar.bz2 niri-b09dbb80c7c507f34e194f2c5420054608cbf732.zip | |
[cfg-breaking] Rename Wheel* to WheelScroll* bindings
Less confusion, and clearer that they are affected by natural-scroll.
Diffstat (limited to 'resources')
| -rw-r--r-- | resources/default-config.kdl | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/resources/default-config.kdl b/resources/default-config.kdl index e72df426..bb5efd7d 100644 --- a/resources/default-config.kdl +++ b/resources/default-config.kdl @@ -523,22 +523,22 @@ binds { // To avoid scrolling through workspaces really fast, you can use // the cooldown-ms property. The bind will be rate-limited to this value. // You can set a cooldown on any bind, but it's most useful for the wheel. - Mod+WheelDown cooldown-ms=150 { focus-workspace-down; } - Mod+WheelUp cooldown-ms=150 { focus-workspace-up; } - Mod+Ctrl+WheelDown cooldown-ms=150 { move-column-to-workspace-down; } - Mod+Ctrl+WheelUp cooldown-ms=150 { move-column-to-workspace-up; } + Mod+WheelScrollDown cooldown-ms=150 { focus-workspace-down; } + Mod+WheelScrollUp cooldown-ms=150 { focus-workspace-up; } + Mod+Ctrl+WheelScrollDown cooldown-ms=150 { move-column-to-workspace-down; } + Mod+Ctrl+WheelScrollUp cooldown-ms=150 { move-column-to-workspace-up; } - Mod+WheelRight { focus-column-right; } - Mod+WheelLeft { focus-column-left; } - Mod+Ctrl+WheelRight { move-column-right; } - Mod+Ctrl+WheelLeft { move-column-left; } + Mod+WheelScrollRight { focus-column-right; } + Mod+WheelScrollLeft { focus-column-left; } + Mod+Ctrl+WheelScrollRight { move-column-right; } + Mod+Ctrl+WheelScrollLeft { move-column-left; } // Usually scrolling up and down with Shift in applications results in // horizontal scrolling; these binds replicate that. - Mod+Shift+WheelDown { focus-column-right; } - Mod+Shift+WheelUp { focus-column-left; } - Mod+Ctrl+Shift+WheelDown { move-column-right; } - Mod+Ctrl+Shift+WheelUp { move-column-left; } + Mod+Shift+WheelScrollDown { focus-column-right; } + Mod+Shift+WheelScrollUp { focus-column-left; } + Mod+Ctrl+Shift+WheelScrollDown { move-column-right; } + Mod+Ctrl+Shift+WheelScrollUp { move-column-left; } // You can refer to workspaces by index. However, keep in mind that // niri is a dynamic workspace system, so these commands are kind of |
