From 8a0a21e21ed197aba6e56c620821305b808a1f53 Mon Sep 17 00:00:00 2001 From: Simon Forman Date: Sun, 10 May 2020 12:17:54 -0700 Subject: [PATCH] I3 config with suggested layout. Stack in upper left corner, log below in same width, scratch window takes up the rest. --- i3.json | 88 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 88 insertions(+) create mode 100644 i3.json diff --git a/i3.json b/i3.json new file mode 100644 index 0000000..aa1c3a4 --- /dev/null +++ b/i3.json @@ -0,0 +1,88 @@ +// vim:ts=4:sw=4:et +{ + // splitv split container with 2 children + "border": "normal", + "floating": "auto_off", + "layout": "splitv", + "percent": 0.25, + "type": "con", + "nodes": [ + { + // splith split container with 1 children + "border": "normal", + "floating": "auto_off", + "layout": "splith", + "percent": 0.25, + "type": "con", + "nodes": [ + { + "border": "normal", + "current_border_width": 2, + "floating": "auto_off", + "geometry": { + "height": 244, + "width": 204, + "x": 0, + "y": 0 + }, + "name": "Stack", + "percent": 1, + "swallows": [ + { + "class": "^Toplevel$", + "title": "^Stack$" + // "transient_for": "^$" + } + ], + "type": "con" + } + ] + }, + { + "border": "normal", + "current_border_width": 2, + "floating": "auto_off", + "geometry": { + "height": 200, + "width": 200, + "x": 0, + "y": 0 + }, + "name": "Log", + "percent": 0.75, + "swallows": [ + { + "class": "^Toplevel$", + // "instance": "^140192861986616$", + "title": "^Log$" + // "transient_for": "^$" + } + ], + "type": "con" + } + ] +} + +{ + "border": "normal", + "current_border_width": 2, + "floating": "auto_off", + "geometry": { + "height": 200, + "width": 200, + "x": 0, + "y": 0 + }, + "name": "Joy - /home/sforman/.joypy", + "percent": 0.75, + "swallows": [ + { + "class": "^Tk$" + // "instance": "^tk$", + // "title": "^Joy\\ \\-\\ \\/home\\/sforman\\/\\.joypy$" + // "transient_for": "^$" + } + ], + "type": "con" +} + -- 2.11.0