You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Yabai version 4 has some breaking changes. One is that the info returned by yabai -m query --spaces specifies the current space by has-focus true rather than focussed 1
Change line 120 of yabai.1d.sh or whatever equivalent file you have installed to the following to fix this:
Similarly for the $WINDOW setting that is used to show if a window is floating or managed. Change line 174 from: WINDOW=$(yabai -m query --windows --window | jq .floating) 2> /dev/null
to: WINDOW=$(yabai -m query --windows --window | jq '."is-floating"') 2> /dev/null
The subsequent test of the returned value will also need to be changed as it is now true/false not 0/1
Yabai version 4 has some breaking changes. One is that the info returned by
yabai -m query --spaces
specifies the current space byhas-focus true
rather thanfocussed 1
Change line 120 of
yabai.1d.sh
or whatever equivalent file you have installed to the following to fix this:The text was updated successfully, but these errors were encountered: