-
Hey folks, Is it possible to have two regions split vertically where one is a stack and the other is a just an individual window? It seems like it should be but I can't find a reference to this. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 4 replies
-
Yes, this is possible. Call I don't know if there's a way to make all newly opened windows automatically add to this stack. |
Beta Was this translation helpful? Give feedback.
-
@cherche and @dmitrym0 you can make window automatically add to stack by using yabai signal: # Signals
# Auto stacking windows
yabai -m signal --add event=window_focused action="yabai -m window $YABAI_WINDOW_ID --insert stack"
yabai -m signal --add event=application_front_switched action='yabai -m window --insert stack'
yabai -m signal --add event=window_destroyed action='yabai -m window --insert stack'
yabai -m signal --add event=application_terminated action='yabai -m window --insert stack' Updated: Credit to @dominiklohmann |
Beta Was this translation helpful? Give feedback.
Yes, this is possible. Call
yabai -m window --insert stack
while focused on the window which you want into make a stack. Then you may add a window to this insertion point as usual (either by warping or opening a new window while the insertion point overlay is active).I don't know if there's a way to make all newly opened windows automatically add to this stack.