diff options
Diffstat (limited to 'i3/.config')
-rw-r--r-- | i3/.config/i3/workspaces/50:code-filer.json | 84 |
1 files changed, 84 insertions, 0 deletions
diff --git a/i3/.config/i3/workspaces/50:code-filer.json b/i3/.config/i3/workspaces/50:code-filer.json new file mode 100644 index 0000000..fcbc5f3 --- /dev/null +++ b/i3/.config/i3/workspaces/50:code-filer.json @@ -0,0 +1,84 @@ +// vim:ts=4:sw=4:et +{ + // splitv split container with 2 children + "border": "pixel", + "floating": "auto_off", + "layout": "splitv", + "percent": 0.55, + "type": "con", + "nodes": [ + { + // splith split container with 1 children + "border": "pixel", + "floating": "auto_off", + "layout": "splith", + "percent": 0.8, + "type": "con", + "nodes": [ + { + "border": "pixel", + "current_border_width": 2, + "floating": "auto_off", + "geometry": { + "height": 945, + "width": 745, + "x": 10, + "y": 10 + }, + "percent": 1, + "swallows": [ + { + "class": "^(Pcmanfm)$" + //"instance": "^(mupdf)|(zathura)$" + } + ], + "type": "con" + } + ] + }, + { + "border": "pixel", + "current_border_width": 2, + "floating": "auto_off", + "geometry": { + "height": 408, + "width": 720, + "x": 0, + "y": 0 + }, + "percent": 0.202941176470588, + "swallows": [ + { + "class": "^URxvt$", + "instance": "^urxvt$", + // Prevent vim to be here + "title": "^((?!vim).)*$" + } + ], + "type": "con" + } + ] +} + +{ + "border": "pixel", + "current_border_width": 2, + "floating": "auto_off", + "geometry": { + "height": 408, + "width": 720, + "x": 0, + "y": 0 + }, + "name": "vim", + "percent": 0.5, + "swallows": [ + { + "class": "^URxvt$", + "instance": "^urxvt$", + "title": "^vim$" + } + ], + "type": "con" +} + |