fix looknfeel.conf compat with Hyprland 0.55.x#5922
Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
Note
Copilot was unable to run its full agentic suite in this review.
Updates Hyprland look-and-feel defaults by adjusting group border colors (including “locked” states) and tweaking Dwindle layout defaults.
Changes:
- Set
col.border_locked_active/inactiveto use the configured active/inactive border colors. - Remove the
pseudotiledefault and strip inline comments from Dwindle settings.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comment on lines
50
to
+54
| group { | ||
| col.border_active = $activeBorderColor | ||
| col.border_inactive = $inactiveBorderColor | ||
| col.border_locked_active = -1 | ||
| col.border_locked_inactive = -1 | ||
| col.border_locked_active = $activeBorderColor | ||
| col.border_locked_inactive = $inactiveBorderColor |
Comment on lines
109
to
113
| # See https://wiki.hypr.land/Configuring/Layouts/Dwindle-Layout/ for more | ||
| dwindle { | ||
| pseudotile = true # Master switch for pseudotiling. Enabling is bound to mainMod + P in the keybinds section below | ||
| preserve_split = true # You probably want this | ||
| force_split = 2 # Always split on the right | ||
| preserve_split = true | ||
| force_split = 2 | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
fixes #5921
two things broke on 0.55.x:
-1is no longer valid as a gradient color, replaced with the existing$activeBorderColor/$inactiveBorderColorvars that are already used right abovedwindle:pseudotilewas removed from Hyprland, causes a config error on every loadboth trigger the big red error overlay.
devalready has these fixed in the lua rewrite, this just patches master in the meantime.