diff options
| author | Donald Williams <129223418+dwilliam62@users.noreply.github.com> | 2025-11-05 03:07:48 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-11-05 03:07:48 -0500 |
| commit | 83c8c37abeacb32ce609c2d37c8656c1274ac6e0 (patch) | |
| tree | d0e07343825aa39f4b43bc987bfa50012b3f4c9b /config/hypr/scripts/ComposeHyprConfigs.sh | |
| parent | 073fc0fb287777e39e6b9089a5db7a7cf010f24f (diff) | |
| parent | 8361dcc058fb41225630934d37bae65dd9b76e43 (diff) | |
Merge pull request #861 from JaKooLit/ddubs-layout
feat(hypr): layout-aware J/K binds + startup sourcing fixes (v2.3.18)
Diffstat (limited to 'config/hypr/scripts/ComposeHyprConfigs.sh')
| -rwxr-xr-x | config/hypr/scripts/ComposeHyprConfigs.sh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/config/hypr/scripts/ComposeHyprConfigs.sh b/config/hypr/scripts/ComposeHyprConfigs.sh index 55bc3c5c..f0928a24 100755 --- a/config/hypr/scripts/ComposeHyprConfigs.sh +++ b/config/hypr/scripts/ComposeHyprConfigs.sh @@ -58,6 +58,10 @@ compose_startup_apps() { while IFS= read -r d; do d="$(echo "$d" | trim)" [[ -z "$d" || "$d" =~ ^# ]] && continue + # Never disable our layout-aware keybind init unless user re-enables via explicit edit here + if [[ "$d" == "\$scriptsDir/KeybindsLayoutInit.sh" ]]; then + continue + fi unset 'cmds[$d]' done <"$disable_file" fi |
