-
-
Notifications
You must be signed in to change notification settings - Fork 1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
layouts: Nuke no_gaps_when_only #8072
Conversation
Rip it out completely. The same functionality can be replicated with:
|
Isn't that specifically only for the first workspace then? I really don't care about this feature anyways so... :3 |
I use this feature, and it's not buggy for me, is there a replacement that does not imply having to set a rule per workspace? Edit: t1 refers to the amount of tiled windows, not the workspace number, so you can burn it with fire. But please keep a comment somewhere about how to achieve this. |
By default, that snippet will be all workspaces. But you can set a number, range or named:
|
|
https://wiki.hyprland.org/Configuring/Workspace-Rules/#smart-gaps |
thanks for the input |
To fully replicate
I also had to add
for maximised windows when there is more than one in a workspace. |
As listed on the wiki, enjoy |
workspace = w[t1], gapsout:0, gapsin:0
workspace = w[tg1], gapsout:0, gapsin:0
workspace = f[1], gapsout:0, gapsin:0
windowrulev2 = bordersize 0, floating:0, onworkspace:w[t1]
windowrulev2 = rounding 0, floating:0, onworkspace:w[t1]
windowrulev2 = bordersize 0, floating:0, onworkspace:w[tg1]
windowrulev2 = rounding 0, floating:0, onworkspace:w[tg1]
windowrulev2 = bordersize 0, floating:0, onworkspace:f[1]
windowrulev2 = rounding 0, floating:0, onworkspace:f[1] |
It would generally be a good idea to have a deprecation warning before a setting/feature is removed so end users are aware. |
as discussed in another issue (I forgot the #) I put those in the release notes. |
NGWO has been deprecated for a while in favor of workspace / window rules that achieve the same thing with less bugs.
Can we finally just nuke it as people keep using it?