Problem

Masz dwa okna A i B, otwórz C:

+-----+-----+    +-----+-----+
|     |     |    |  A  |  B  |
|  A  |  B  | -> +-----+-----+
|     |     |    |     C     |
+-----+-----+    +-----------+

Rozwiązanie

Zaznacz A i B (focus):

super + p

Wybierz obszar poniżej (swap):

super + ctrl + j

Otwórz okno:

super + Return

More information

Użyte skróty ustawione są w ~/.config/sxhkd/sxhkdrc:

# terminal emulator
super + Return
    xterm
        
# focus the node in the given direction
super + {_,shift + }{h,j,k,l}
    bspc node -{f,s} {west,south,north,east}

# focus the node for the given path jump
super + {p,b,comma,period}
    bspc node -f @{parent,brother,first,second}

Refs