layout-machi/README.md

279 lines
7.8 KiB
Markdown
Raw Normal View History

2021-02-15 05:04:42 +01:00
# ![machi icon](icon.png) layout-machi
2019-07-13 06:57:13 +02:00
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?
2021-02-15 05:04:42 +01:00
TL;DR --- To bring back control the window layout.
2019-07-04 23:43:24 +02:00
2021-02-15 05:04:42 +01:00
1. Dynamic tiling can be an overkill, since tiling is only useful for persistent windows, and people extensively use hibernate/sleep these days.
2. Having window moving around can be annoying whenever a new window shows up.
3. I want 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
2021-02-15 05:04:42 +01:00
I developed it with Awesome git version. Hopefully it works with 4.3 stable.
Please let me know if it does not work in 4.3 or older versions.
2019-07-14 18:46:06 +02:00
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`
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
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
2020-03-21 21:49:20 +01:00
Use `local layout = machi.layout.create(args)` to instantiate the layout with an editor object. `args` is a table of arguments, where the followings can be used:
- `name`: the constant name of the layout.
- `name_func`: a `function(t)` closure that returns a string for tag `t`. `name_func` overrides `name`.
- `persistent`: whether to keep a history of the command for the layout. The default is `true`.
2020-03-21 21:49:20 +01:00
- `default_cmd`: the command to use if there is no persistent history for this layout.
- `editor`: the editor used for the layout. The default is `machi.default_editor` (or `machi.editor.default_editor`).
Either `name` or `name_func` must be set - others are optional.
2020-03-21 21:49:20 +01:00
The function is compatible with the previous `machi.layout.create(name, editor, default_cmd)` calls.
## The layout editor and commands
2019-07-04 23:32:05 +02:00
### Starting editor in lua
Call `local editor = machi.editor.create()` to create an editor.
To edit the layout `l` on screen `s`, call `editor.start_interactive(s = awful.screen.focused(), l = awful.layout.get(s))`.
### 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).
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
2. Operations taking argument string as a single number.
`s` shift active region, `t` set the maximum split depth
3. Operation not taking argument.
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.
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
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
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
```
### 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
2021-02-15 05:04:42 +01:00
__This mode is somewhat usable, yet it may change in the future.__
2019-08-01 03:00:38 +02:00
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.
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
2021-02-15 05:04:42 +01:00
### Nested layouts
__This feature is a toy. It may come with performance and usability issues - you have been warned.__
__This feature is not available in draft mode.__
To set up nested layouts, you first need to check/modify `machi.editor.nested_layouts` array, which maps an argument string (`[0-9,]+`) to a layout object.
In machi command, use the argument string with command `x` will set up the nested layout of the region to the mapped one.
For example, since by default `machi.editor.nested_layouts["0"]` is `awful.layout.suit.tile` and `machi.editor.nested_layouts["1"]` is `awful.layout.suit.spiral`,
the command `11h0x1x` will split the screen horizontally apply the layouts accordingly - see the figure below.
![nested layout screenshot](nested_layout_screenshot.png)
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-10 22:57:39 +02:00
## Caveats
1. layout-machi handles `beautiful.useless_gap` slightly differently.
2019-07-10 22:57:39 +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