2019-07-13 06:57:13 +02:00
# ![](icon.png) layout-machi
2019-07-05 05:11:36 +02:00
A manual layout for Awesome with a rapid interactive editor.
2019-07-04 23:32:05 +02:00
2019-07-13 03:34:44 +02:00
Demos: https://imgur.com/a/OlM60iw
2019-08-08 16:42:57 +02:00
Draft mode: https://imgur.com/a/BOvMeQL
2019-07-04 23:32:05 +02:00
## 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-06 03:57:27 +02:00
2. I don't want to have all windows moving around whenever a new window shows up.
2019-07-04 23:39:05 +02:00
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
2019-07-14 18:46:06 +02:00
## Compatibilities
I developed it with Awesome 4.3.
Please let me know if it does not work in other versions.
2019-10-06 18:19:31 +02:00
## Really quick usage
See `rc.patch` for adding layout-machi to the default 4.3 config.
2019-07-11 18:59:21 +02:00
## Quick usage
Suppose this git is checked out at `~/.config/awesome/layout-machi`
2019-08-10 18:25:51 +02:00
Use `local machi = require("layout-machi")` to load the module.
2019-07-11 18:59:21 +02:00
2019-07-13 00:04:39 +02:00
The package provide a default layout `machi.default_layout` and editor `machi.default_editor` , which can be added into the layout list.
2019-07-11 18:59:21 +02:00
2019-07-14 00:39:38 +02:00
The package comes with the icon for `layoutbox` , which can be set with the following statement (after a theme has been loaded):
`require("beautiful").layout_machi = machi.get_icon()`
2019-09-14 21:21:28 +02:00
By default, any machi layout will use the layout command from `machi.layout.default_cmd` , which is initialized as `dw66.` (see interpretation below).
You can change it after loading the module.
2019-07-04 23:32:05 +02:00
## Use the layout
2019-08-10 18:25:51 +02:00
Use `local layout = machi.layout.create(name, editor)` to instantiate the layout with an editor object.
2019-07-14 00:39:38 +02:00
2019-07-14 19:26:13 +02:00
`name` can be a string or a function returning a string (see `init.lua` and "Advanced" below).
2019-07-14 00:39:38 +02:00
This is used for having different actual layout dependent on tags.
`editor` are used for editing and persisting the layouts.
2019-07-13 00:04:39 +02:00
`machi.default_editor` can be used, or see below on creating editors.
2019-07-14 00:39:38 +02:00
You can create multiple layouts with different names and share the same editor.
2019-08-10 18:25:51 +02:00
## The layout editor and commands
2019-07-04 23:32:05 +02:00
2019-08-10 18:25:51 +02:00
### Starting editor in lua
Call `local editor = machi.editor.create()` to create an editor.
2019-07-12 16:05:58 +02:00
To edit the layout `l` on screen `s` , call `editor.start_interactive(s = awful.screen.focused(), l = awful.layout.get(s))` .
2019-07-06 03:57:27 +02:00
2019-08-10 18:25:51 +02:00
### Basic usage
2019-08-10 19:33:00 +02:00
The editing command starts with the open region of the entire workarea, perform "operations" to split the current region into multiple sub-regions, then recursively edits each of them (by default, the maximum split depth is 2).
2019-08-10 18:25:51 +02:00
The layout is defined by a sequence of operations as a layout command.
The layout editor allows users to interactively input their commands and shows the resulting layouts on screen, with the following auxiliary functions:
1. `Up` /`Down`: restore to the history command
2. `Backspace` : undo the last command.
3. `Escape` : exit the editor without saving the layout.
4. `Enter` : when all regions are defined, hit enter will save the layout.
### Layout command
As aforementioned, command a sequence of operations.
There are three kinds of operations:
1. Operations taking argument string and parsed as multiple numbers.
2019-08-11 15:08:52 +02:00
`h` horizontally split, `v` vertically split, `w` grid split, `d` draft split
2019-08-10 18:25:51 +02:00
2. Operations taking argument string as a single number.
2019-08-19 00:52:46 +02:00
`s` shift active region, `p` set the maximum split depth
2019-08-10 18:25:51 +02:00
3. Operation not taking argument.
2019-07-06 03:57:27 +02:00
2019-08-11 15:08:52 +02:00
`.` finish all regions, `-` finish the current region, `/` remove the current region, `;` no-op
2019-07-04 23:32:05 +02:00
2019-08-19 00:52:46 +02:00
Argument strings are composed of numbers and `,` . If the string contains `,` , it will be used to split argument into multiple numbers.
2019-08-10 18:25:51 +02:00
Otherwise, each digit in the string will be treated as a separated number in type 1 ops.
Each operation may take argument string either from before (such as `22w` ) or after (such as `w22` ).
When any ambiguity arises, operation before always take the argument after. So `h11v` is interpreted as `h11` and `v` .
2019-07-04 23:32:05 +02:00
2019-07-06 03:57:27 +02:00
For examples:
2019-07-04 23:32:05 +02:00
2019-07-07 21:04:58 +02:00
`h-v`
2019-07-04 23:32:05 +02:00
```
11 22
11 22
2019-07-06 03:57:27 +02:00
11
2019-07-04 23:32:05 +02:00
11 33
11 33
```
2019-07-07 21:04:58 +02:00
`hvv` (or `22w` )
2019-07-04 23:32:05 +02:00
```
11 33
11 33
22 44
22 44
```
2019-07-10 04:07:54 +02:00
`131h2v-12v`
2019-07-04 23:55:10 +02:00
2019-07-05 05:20:30 +02:00
Details:
2019-07-10 04:07:54 +02:00
- `131h` : horizontally split the initial region (entire desktop) to the ratio of 1:3:1
- For the first `1` part:
2019-07-05 05:20:30 +02:00
- `2v` : vertically split the region to the ratio of 2:1
2019-07-10 04:07:54 +02:00
- `-` : skip the editing of the middle `3` part
- For the right `1` part:
2019-07-05 05:20:30 +02:00
- `12v` : split the right part vertically to the ratio of 1:2
Tada!
2019-07-04 23:55:10 +02:00
```
11 3333 44
11 3333 44
11 3333
11 3333 55
3333 55
22 3333 55
22 3333 55
```
2019-08-01 03:00:38 +02:00
`12210121d`
```
11 2222 3333 44
11 2222 3333 44
55 6666 7777 88
55 6666 7777 88
55 6666 7777 88
55 6666 7777 88
99 AAAA BBBB CC
99 AAAA BBBB CC
```
2019-08-10 18:25:51 +02:00
### Advanced grid layout
__More document coming soon. For now there is only a running example.__
Simple grid, `w44` :
```
0 1 2 3
4 5 6 7
8 9 A B
C D E F
```
Merge grid from the top-left corner, size 3x1, `w4431` :
```
0-0-0 1
2 3 4 5
6 7 8 9
A B C D
```
Another merge, size 1x3, `w443113` :
```
0-0-0 1
|
2 3 4 1
|
5 6 7 1
8 9 A B
```
Another merge, size 1x3, `w44311313` :
```
0-0-0 1
|
2 3 4 1
| |
2 5 6 1
|
2 7 8 9
```
Another merge, size 2x2, `w4431131322` :
```
0-0-0 1
|
2 3-3 1
| | | |
2 3-3 1
|
2 4 5 6
```
Final merge, size 3x1, `w443113132231` :
```
0-0-0 1
|
2 3-3 1
| | | |
2 3-3 1
|
2 4-4-4
```
2019-08-01 03:00:38 +02:00
### Draft mode
__This mode is experimental. Its usage may change fast.__
Unlike the original machi layout, where a window fits in a single region, draft mode allows window to span across multiple regions.
Each tiled window is associated with a upper-left region (ULR) and a bottom-right region (BRR).
The geometry of the window is from the upper-left corner of the ULR to the bottom-right corner of the BRR.
2019-08-10 18:25:51 +02:00
This is suppose to work with regions produced with `d` or `w` operation.
To enable draft mode in a layout, configure the layout with a command with a leading `d` , for example, `d12210121` , or `dw66` .
2019-08-01 03:00:38 +02:00
2019-07-05 01:09:17 +02:00
### Persistent history
2019-07-12 16:25:53 +02:00
By default, the last 100 command sequences are stored in `.cache/awesome/history_machi` .
2019-07-06 06:10:04 +02:00
To change that, please refer to `editor.lua` . (XXX more documents)
2019-07-05 23:13:59 +02:00
2019-07-07 20:22:01 +02:00
## Switcher
2019-07-12 00:06:40 +02:00
Calling `machi.switcher.start()` will create a switcher supporting the following keys:
2019-07-10 05:30:02 +02:00
- Arrow keys: move focus into other regions by the direction.
2019-08-01 15:54:18 +02:00
- `Shift` + arrow keys: move the focused window to other regions by the direction. In draft mode, move the window while preserving its size.
2019-08-06 04:29:03 +02:00
- `Control` [ + `Shift` ] + arrow keys: move the bottom-right (or top-left window if `Shift` is pressed) region of the focused window by direction. Only works in draft mode.
2019-08-01 03:00:38 +02:00
- `Tab` : switch beteen windows covering the current regions.
2019-07-10 05:30:02 +02:00
So far, the key binding is not configurable. One has to modify the source code to change it.
2019-07-07 20:22:01 +02:00
2019-07-14 19:26:13 +02:00
## Advanced
2019-07-14 19:27:29 +02:00
### `name` as a function in `machi.layout.create`
2019-07-14 19:26:13 +02:00
2019-07-14 19:33:39 +02:00
When passed in as a function, `name` takes the tag `t` and returns (1) a string for the tag-dependent name of the layout, and (2) a boolean indicating the persistence of the layout.
2019-07-14 19:26:13 +02:00
The default layout, `machi.default_layout` , uses the screen geometry and the tag name for name, thus allows the actual layout to be tag- and screen-dependent.
To differentiate tags with the same name, you may need a more advanced naming function.
2019-07-10 22:57:39 +02:00
## Caveats
2019-07-21 18:03:55 +02:00
1. layout-machi handles `beautiful.useless_gap` slightly differently.
2019-07-10 22:57:39 +02:00
2019-07-21 18:03:55 +02:00
2. True transparency is required. Otherwise switcher and editor will block the clients.
2019-07-11 20:40:13 +02:00
2019-07-04 23:32:05 +02:00
## License
Apache 2.0 --- See LICENSE