diff options
| -rw-r--r-- | dotfiles/hyprland/.config/hypr/hyprland.conf | 8 | ||||
| -rwxr-xr-x | dotfiles/hyprland/.local/bin/layout-navigate | 9 |
2 files changed, 9 insertions, 8 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 diff --git a/dotfiles/hyprland/.local/bin/layout-navigate b/dotfiles/hyprland/.local/bin/layout-navigate index ec2f659..4fc02c2 100755 --- a/dotfiles/hyprland/.local/bin/layout-navigate +++ b/dotfiles/hyprland/.local/bin/layout-navigate @@ -10,17 +10,18 @@ LAYOUT=$(hyprctl getoption general:layout -j | jq -r '.str') case "$LAYOUT" in scrolling) + # Swap directions: J (next) goes left, K (prev) goes right if [ "$MOVE" = "move" ]; then if [ "$DIR" = "next" ]; then - hyprctl dispatch layoutmsg movewindowto r - else hyprctl dispatch layoutmsg movewindowto l + else + hyprctl dispatch layoutmsg movewindowto r fi else if [ "$DIR" = "next" ]; then - hyprctl dispatch layoutmsg focus r - else hyprctl dispatch layoutmsg focus l + else + hyprctl dispatch layoutmsg focus r fi fi ;; |
