diff options
Diffstat (limited to 'i3wm/.i3/layout')
-rw-r--r-- | i3wm/.i3/layout/half_stack.json | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/i3wm/.i3/layout/half_stack.json b/i3wm/.i3/layout/half_stack.json new file mode 100644 index 0000000..8f7ecc8 --- /dev/null +++ b/i3wm/.i3/layout/half_stack.json @@ -0,0 +1,39 @@ +{ + "layout": "splith", + "nodes": [ + { + "border": "pixel", + "percent": 0.5, + "swallows": [ + { + "instance": ".*" + } + ] + }, + { + "layout": "stacked", + "percent": 0.5, + "nodes": [ + { + "border": "pixel", + "percent": 0.5, + "swallows": [ + { + "instance": ".*" + } + ] + }, + { + "border": "pixel", + "percent": 0.5, + "swallows": [ + { + "instance": ".*" + } + ] + } + ] + } + ] +} + |