You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Workspace layoutopt rules now migrate to a nested layout_opts table (layoutopt:direction:right becomes layout_opts = { direction = "right" }) instead of a flat layoutopt = "direction:right" string that hl.workspace_rule rejects. Multiple layoutopt: entries collect into one table and fan back out on the reverse path. BlueManCZ/hyprmod#53
A variable whose value is a modifier combo ($shiftMod = $mainMod SHIFT) now re-joins with + in its Lua definition (var_mainMod .. " + SHIFT"). Previously the space-separated form leaked through, so a bind using $shiftMod expanded to the blob SUPER SHIFT that hl.bind reads as a single unknown keysym. Nested modifier variables resolve recursively; non-modifier multi-word variables (commands, paths) keep their spaces. BlueManCZ/hyprmod#52