diff options
Diffstat (limited to '.config/i3/layouts')
| -rw-r--r-- | .config/i3/layouts/coms.json | 29 | ||||
| -rw-r--r-- | .config/i3/layouts/music.json | 27 | ||||
| -rw-r--r-- | .config/i3/layouts/videos.json | 11 |
3 files changed, 67 insertions, 0 deletions
diff --git a/.config/i3/layouts/coms.json b/.config/i3/layouts/coms.json new file mode 100644 index 0000000..6e93d00 --- /dev/null +++ b/.config/i3/layouts/coms.json @@ -0,0 +1,29 @@ +{ + "layout": "splith", + "percent": 1, + "type": "con", + "nodes": [ + { + "name": "Terminal", + "percent": 0.7, + "swallows": [ + { + "instance": "^weechat$" + } + ], + "type": "con" + }, + { + "name": "TeamSpeak 3", + "percent": 0.3, + "swallows": [ + { + "class": "^TeamSpeak\\ 3$", + "instance": "^ts3client_linux_amd64$", + "title": "^TeamSpeak\\ 3$" + } + ], + "type": "con" + } + ] +} diff --git a/.config/i3/layouts/music.json b/.config/i3/layouts/music.json new file mode 100644 index 0000000..8f80aab --- /dev/null +++ b/.config/i3/layouts/music.json @@ -0,0 +1,27 @@ +{ + "layout": "splitv", + "percent": 1, + "type": "con", + "nodes": [ + { + "name": "MPD Interface", + "percent": 0.8, + "swallows": [ + { + "instance": "^vimpc$" + } + ], + "type": "con" + }, + { + "name": "Visualizer", + "percent": 0.2, + "swallows": [ + { + "instance": "^cava$" + } + ], + "type": "con" + } + ] +} diff --git a/.config/i3/layouts/videos.json b/.config/i3/layouts/videos.json new file mode 100644 index 0000000..b353149 --- /dev/null +++ b/.config/i3/layouts/videos.json @@ -0,0 +1,11 @@ +{ + "name": "mpv", + "percent": 1, + "swallows": [ + { + "class": "^mpv$", + "instance": "^gl$" + } + ], + "type": "con" +} |
