diff options
| author | Craig Jennings <c@cjennings.net> | 2026-01-25 21:57:07 -0600 |
|---|---|---|
| committer | Craig Jennings <c@cjennings.net> | 2026-01-25 21:57:07 -0600 |
| commit | 205e43d1e4c6a30d783f8e45c48b9c7a36c62dd1 (patch) | |
| tree | 3d05a374850b019b3c2ee94ebaa5926cfff70876 /dotfiles/hyprland/.config | |
| parent | 0a98a1721271536db3e79f2f170deced839b6aec (diff) | |
| download | archsetup-205e43d1e4c6a30d783f8e45c48b9c7a36c62dd1.tar.gz archsetup-205e43d1e4c6a30d783f8e45c48b9c7a36c62dd1.zip | |
fix(hyprland): preserve j/k direction in master layout
Swap directions only in scrolling layout, not master.
- Master: J=next (down), K=prev (up) - original behavior
- Scrolling: J=left, K=right - swapped for intuitive scroll
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Diffstat (limited to 'dotfiles/hyprland/.config')
| -rw-r--r-- | dotfiles/hyprland/.config/hypr/hyprland.conf | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/dotfiles/hyprland/.config/hypr/hyprland.conf b/dotfiles/hyprland/.config/hypr/hyprland.conf index bb099d8..df44e23 100644 --- a/dotfiles/hyprland/.config/hypr/hyprland.conf +++ b/dotfiles/hyprland/.config/hypr/hyprland.conf @@ -142,10 +142,10 @@ bind = $mod SHIFT, P, exec, waypaper # Window management (from DWM) # Layout-aware navigation (works across master, scrolling, hy3) -bind = $mod, J, exec, layout-navigate prev -bind = $mod, K, exec, layout-navigate next -bind = $mod SHIFT, J, exec, layout-navigate prev move -bind = $mod SHIFT, K, exec, layout-navigate next move +bind = $mod, J, exec, layout-navigate next +bind = $mod, K, exec, layout-navigate prev +bind = $mod SHIFT, J, exec, layout-navigate next move +bind = $mod SHIFT, K, exec, layout-navigate prev move bind = $mod, H, splitratio, -0.05 bind = $mod, L, splitratio, +0.05 bind = $mod, RETURN, layoutmsg, swapwithmaster master |
