layout-machi/README.md

108 lines
2.9 KiB
Markdown
Raw Normal View History

2019-07-04 23:32:05 +02:00
# layout-machi
A simple and static layout for Awesome with a rapid interactive layout editor.
## Why?
2019-07-04 23:43:49 +02:00
TL;DR --- I want the control of my layout.
2019-07-04 23:43:24 +02:00
2019-07-04 23:32:05 +02:00
1. Dynamic tiling is an overkill, since tiling is only useful for persistent windows, and people extensively use hibernate/sleep these days.
2019-07-04 23:39:05 +02:00
2. I don't want to have all windows moving around whenever a new window shows up.
3. I want to have a flexible layout such that I can quickly adjust to whatever I need.
2019-07-04 23:32:05 +02:00
## Use the layout
2019-07-05 01:09:17 +02:00
Use `layout_machi.layout.create_layout([LAYOUT_NAME}, [DEFAULT_REGIONS])` to instantiate the layout.
2019-07-04 23:32:05 +02:00
For example:
```
2019-07-05 01:09:17 +02:00
layout_machi.layout.create_layout("default", {})
2019-07-04 23:32:05 +02:00
```
Creates a layout with no regions
## Use the editor
2019-07-05 01:09:17 +02:00
Call `layout_machi.editor.start_editor(data)` to enter the editor for the current layout (given it is a machi instance).
2019-07-04 23:32:05 +02:00
`data` is am object for storing the history of the editing, initially `{}`.
The editor starts with the open area of the entire workarea, taking command to split the current area into multiple sub-areas, then editing each of them.
The editor is keyboard driven, accepting a number of command keys.
Before each command, you can optionally provide at most 2 digits for parameters (A, B) of the command.
By default A = B = 1.
1. `Up`/`Down`: restore to the history command sequence
2. `h`/`v`: split the current region horizontally/vertically into 2 regions. The split will respect the ratio A:B.
3. `w`: Take two parameters (A, B), and split the current region equally into A columns and B rows. If both A and B is 1, behave the same as `Space` without parameters.
4. `s`: shift the current editing region with other open sibling regions.
5. `Space` or `-`: Without parameters, close the current region and move to the next open region. With parameters, set the maximum depth of splitting (default is 2).
6. `Enter`/`.`: close all open regions. When all regions are closed, press `Enter` will save the layout and exit the editor.
7. `Backspace`: undo the last command.
8. `Escape`: exit the editor without saving the layout.
2019-07-05 01:11:19 +02:00
### Demos:
2019-07-04 23:32:05 +02:00
2019-07-04 23:36:00 +02:00
I used `Super + /` for the editor and `Super + Tab` for fitting the windows.
2019-07-04 23:32:05 +02:00
h-v
```
11 22
11 22
11
11 33
11 33
```
2019-07-04 23:33:32 +02:00
![](https://i.imgur.com/QbvMRTW.gif)
2019-07-04 23:32:05 +02:00
hvv (or 22w)
```
11 33
11 33
22 44
22 44
```
2019-07-04 23:33:32 +02:00
![](https://i.imgur.com/xJebxcF.gif)
2019-07-04 23:32:05 +02:00
2019-07-04 23:55:10 +02:00
3-13h2v--2h-12v
```
11 3333 44
11 3333 44
11 3333
11 3333 55
3333 55
22 3333 55
22 3333 55
```
2019-07-04 23:32:05 +02:00
history
2019-07-04 23:33:32 +02:00
![](https://i.imgur.com/gzFr48V.gif)
2019-07-04 23:32:05 +02:00
2019-07-05 01:09:17 +02:00
### Persistent history
You need to specify the path of the history file in the editor data, then restore the persistent history by `layout_machi.editor.restore_data`. For example,
```
machi_layout_data = layout_machi.editor.restore_data({ history_file = ".machi-layout" })
```
Then start the editor with the restored data.
For now the last 10 commands are persisted.
## Other functions
`layout_machi.editor.cycle_region(c)` will fit a floating client into the closest region, then cycle through all regions.
2019-07-04 23:32:05 +02:00
## License
Apache 2.0 --- See LICENSE