Skip to content

v0.9.10

Latest

Choose a tag to compare

@BlueManCZ BlueManCZ released this 29 Jun 09:05
1bb4b28

Fixed

  • 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