1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-08-09 15:08:31 -04:00

keybinds: fix lua parsing on Hyprland for non-static configuration

fixes #2753
This commit is contained in:
bbedward
2026-07-05 17:16:55 -04:00
parent 78e823e23a
commit 36ad34a555
4 changed files with 550 additions and 2 deletions
+1 -1
View File
@@ -1154,7 +1154,7 @@ func readLuaOrHyprlangOverride(path string) (map[string]*hyprlandOverrideBind, e
if err != nil {
return nil, err
}
lines := strings.Split(string(data), "\n")
lines := expandLuaConfigLines(strings.Split(string(data), "\n"))
parser := NewHyprlandParser("")
pendingUnbinds := make(map[string]string)
for _, line := range lines {