Åsmund Vikane
Åsmund Vikane
> I was thinking of a hardcoded number of panes in the stack layout, just a higher number than 1. Even 2 columns would be a major improvement, would that...
The flickering happens because the border is actually being occluded by the window when it gains focus, but we detect that shortly after and bring the border back to front...
The border system in v3.3.10 does not work in macOS Monterey so it was rewritten in v4.0.0; the new version has this side effect, at least for now. I spent...
It appears that the new border system **could** get rid of this visual flicker if it is sped up. My proof of concept version (https://github.com/koekeishiya/yb) **does not** have this flickering...
You need to create a signal or something to automate the behaviour. I have recently thought about adding the ability to save and restore layouts, which would solve your issue,...
So there are a couple of reasons for this.. 1. It is not possible to match the corner radius/mask of a window, as there is no way for an external...
What you are seeing is not actually the window border, it is the window shadow. You can confirm this by running `yabai -m config window_shadow off`, assuming you have the...
Not really sure what that could be. Both work fine for me. Maybe they are being treated as floating for some reason? Make sure they are *not* assigned to "all...
Don't think there is a way to resolve this. Disable window borders in your config or disable them using a hotkey before sharing screen: `yabai -m config window_border off`
The following one-liner will toggle: `if [[ $(yabai -m config window_border) = "off" ]]; then yabai -m config window_border on; else yabai -m config window_border off; fi`