diff options
Diffstat (limited to 'config/hypr/scripts/KeybindsLayoutInit.sh')
| -rwxr-xr-x | config/hypr/scripts/KeybindsLayoutInit.sh | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/config/hypr/scripts/KeybindsLayoutInit.sh b/config/hypr/scripts/KeybindsLayoutInit.sh index 80bee9d6..f47197af 100755 --- a/config/hypr/scripts/KeybindsLayoutInit.sh +++ b/config/hypr/scripts/KeybindsLayoutInit.sh @@ -1,14 +1,19 @@ #!/usr/bin/env bash -# /* ---- 💫 https://github.com/LinuxBeginnings 💫 ---- */ ## +# ================================================== +# KoolDots (2026) +# Project URL: https://github.com/LinuxBeginnings +# License: GNU GPLv3 +# SPDX-License-Identifier: GPL-3.0-or-later +# ================================================== # Initialize J/K keybinds so they always cycle windows globally (no layout-specific behavior) # This avoids double-actions when layouts change. set -euo pipefail # Always reset and bind SUPER+J/K the same way on startup -hyprctl keyword unbind SUPER,J || true -hyprctl keyword unbind SUPER,K || true +hyprctl keyword unbind SUPER,j || true +hyprctl keyword unbind SUPER,k || true -# Cycle windows globally: J = next, K = previous -hyprctl keyword bind SUPER,J,cyclenext -hyprctl keyword bind SUPER,K,cyclenext,prev +# Cycle windows globally +hyprctl keyword bind SUPER,j,layoutmsg,cyclenext +hyprctl keyword bind SUPER,k,layoutmsg,cycleprev |
