Problem
The Hyprland windowrule examples in the README are invalid for Hyprland 0.53+,
which overhauled the windowrule syntax. The current docs produce these errors:
Current (broken) syntax in README
windowrule = match:class clipse, float true
windowrule = match:class clipse, size 622 652
Correct syntax for Hyprland 0.53+
windowrule = float on, match:class clipse
windowrule = size 622 652, match:class clipse
The key changes:
- Effect comes before
match:, not after
float requires an explicit value: float on instead of float true
References
Problem
The Hyprland windowrule examples in the README are invalid for Hyprland 0.53+,
which overhauled the windowrule syntax. The current docs produce these errors:
Current (broken) syntax in README
Correct syntax for Hyprland 0.53+
The key changes:
match:, not afterfloatrequires an explicit value:float oninstead offloat trueReferences