In default i3wm I can split windows only vertical or horizontal. Can I split my 4 windows are like that:
|_1_|_2_|
|_3_|_4_|
In default i3wm I can split windows only vertical or horizontal. Can I split my 4 windows are like that:
|_1_|_2_|
|_3_|_4_|
I don't use i3 anymore, but as you said, you ‘can split windows only vertical or horizontal.’ So assuming you have the defaults set, to create this grid-like layout, just
+---+---+
| | |
| 1 | 2 |
| | |
+---+---+
MOD + j focuses left by default)SUPER + v splits vertically by default)+---+---+
| 1 | |
+---+ 2 |
| 3 | |
+---+---+
SUPER + ; focuses right by default)SUPER + v by default)+---+---+
| 1 | 2 |
+---+---+
| 3 | 4 |
+---+---+
You have the desired layout.
(MOD is the i3 combination key you use; for example I prefer the Windows (Super) key)