i3-layout-manager/README.md

77 lines
3.8 KiB
Markdown
Raw Normal View History

2018-08-28 16:48:24 +02:00
# i3-layout-manager
Saving, loading and managing layouts for i3wm.
2018-08-28 17:44:52 +02:00
2018-08-30 03:32:39 +02:00
[![Play video](https://img.youtube.com/vi/Q0qlUfG_lZ0/0.jpg)](https://www.youtube.com/watch?v=Q0qlUfG_lZ0)
2018-08-30 03:28:24 +02:00
2018-08-28 18:33:13 +02:00
## Preamble - dont worry, I solved all of this
i3 window manager supports saving and loading of window layouts, however, the features are bare-bone and partially missing.
According to the [manual](https://i3wm.org/docs/layout-saving.html), the layout tree can be exported into a json file.
The file contains a description of the containers of a workspace with prefilled (and commented) potential matching rules for the windows.
2018-08-30 03:48:04 +02:00
User is supposed to uncomment the desierd one (and/or modify them) and delete the unsused ones.
2018-08-28 18:33:13 +02:00
Moreover, user should add a surrouding root container which is missing in the file (this baffles me, why cant they save it too?).
2018-08-29 20:59:37 +02:00
So doing it manually (which I dont want) consists of following steps, as described at [i3wm.org](https://i3wm.org/docs/layout-saving.html):
2018-08-30 04:20:40 +02:00
1. export the workspace into json using ```i3-save-tree --workspace ...```
2018-08-28 18:33:13 +02:00
2. edit the json to match your desired matching rules for the windows
3. wrap the file in a root node, which defines the root split.
4. when needed, load the layout using ```i3-append ...```
2018-08-29 20:59:37 +02:00
However, this plan has flaws.
Its not scalable, its not automated and loading a layout does not work when windows are already present in the current workspace.
2018-08-30 03:48:04 +02:00
To fix it, I built this **i3-layout-manager**.
2018-08-28 18:35:37 +02:00
Currently, its a hacky-type of a shell script, but feel free to contribute :-).
2018-08-28 18:33:13 +02:00
## How does it work?
2018-08-29 20:59:37 +02:00
1. The workspace tree is exported usin ```i3-save-tree --workspace ...```
2018-08-29 22:23:20 +02:00
2. The tree for all workspaces on the currently focused monitor exported using ```i3-save-tree --output ...```
2018-08-29 20:59:37 +02:00
3. The location of the current workspace in the all-tree is found by matching the workspace-tree file on the monitor-tree file.
2018-08-29 22:23:20 +02:00
4. The parameters of the root split are extracted and the workspace tree is wrapped in a new split.
5. User is then asked about how should the windows be matched. The options are:
2018-08-29 22:26:32 +02:00
* All by _instance_ (instance will be uncommented for all windows)
* Match any window to any placeholder
2018-08-30 03:45:05 +02:00
* Choose an option for each window. The user will be asked to choose between the _class_, _instance_ and _title_ for each window. The tree file will be modified according to the selected options automatically.
6. After that the tree is save and ready to be loaded.
7. User can load the layout either before opening windows, which creates placeholders, or after windows have been already created in a workspace. The second part normally does not work.
8. To apply a layout, we first move all windows containing a process from the workspace using `xdotool`, which leaves only placeholders. Then we kill all the old placeholders, before we apply the layout, which spawns new placeholders in the correct places. Lastly we move the windows back, which triggers the _swallow_ mechanicm in the same way, as newly create windows do.
2018-08-30 03:51:11 +02:00
## How to use it?
2018-08-30 03:45:05 +02:00
2018-08-30 03:53:25 +02:00
* By directly running the script
```bash
./layout_manager.sh
```
It uses *rofi* to interact with the user, no file editing or coding is required.
You can bind the script to an i3 key kombination.
* The layout manager can load a layout by running
```bssh
./layout_manager.sh <layout_name>
```
which is useful for automation.
2018-08-28 18:33:13 +02:00
2018-09-02 03:44:45 +02:00
## Layout files
The layout files are store by default in `~/.layouts`.
Feel free to tinker with the matching rules by hand.
2018-08-28 17:44:52 +02:00
## Dependencies
* vim/nvim
* jq
* i3
* rofi
* xdotool
* x11-xserver-utils
```bash
sudo apt-install jq vim rofi xdotool x11-xserver-utils
```
2018-08-30 03:51:11 +02:00
## FAQ
* Why do you use vim for the automated file editing?
`Vim is great for this kind of work. A simple oneliner can do complex edits which would be difficult to program even using, e.g., python. Thanks to this, the layout manager was hacked up in single day.`