-
-
Notifications
You must be signed in to change notification settings - Fork 647
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
feature request: something like sway's smart_borders
#1350
Comments
here's how i'm currently faking this feature
#! /usr/bin/env zsh
NUM_WINDOWS=$(yabai -m query --windows --space mouse | jq -c '[.[] | select (."is-floating" == false and ."is-visible" == true)] | length')
if [ "$NUM_WINDOWS" = "1" ] || [ "$NUM_WINDOWS" = "0" ]; then
yabai -m config --space mouse window_border off
else
yabai -m config --space mouse window_border on
fi |
I don't think the |
oh, maybe not. it works for me regardless, maybe because i have a single monitor setup and can't see more than one space at a time |
Borders have been removed in the latest release (v6.0.0) (#1889) because of multiple issues present in both Ventura and Sonoma. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
just something i miss from sway
The text was updated successfully, but these errors were encountered: