Originally created by @LGUG2Z on GitHub (Oct 18, 2021).
Originally assigned to: @LGUG2Z on GitHub.
The default layouts do not always provide for a nice experience on ultrawide monitors and allowing custom layouts to be defined and loaded on the fly would be a big improvement in this area.
Originally created by @LGUG2Z on GitHub (Oct 18, 2021).
Originally assigned to: @LGUG2Z on GitHub.
The default layouts do not always provide for a nice experience on ultrawide monitors and allowing custom layouts to be defined and loaded on the fly would be a big improvement in this area.
The column is the basic building block of custom layouts
Vertical splits in custom layouts can be arranged but not navigated, so vertical splits are disabled for now (fixing this should probably be in scope for this issue)
Resizing support is not in scope for this issue (may be worked on in a separate issue when/if there is a user request)
Layout flipping support is not in scope for this issue (may be worked on in a separate issue when/if there is a user request)
Anyone can now build from this branch and load custom layouts with the komorebic load-layout layout-file.json command. The complete schema for custom layout definition is here and the validation rules are here.
@LGUG2Z commented on GitHub (Oct 18, 2021):
Work on this issue has been started here: https://github.com/LGUG2Z/komorebi/tree/feature/custom-layouts
- The column is the basic building block of custom layouts
- Vertical splits in custom layouts can be arranged but not navigated, so vertical splits are disabled for now (fixing this should probably be in scope for this issue)
- Resizing support is not in scope for this issue (may be worked on in a separate issue when/if there is a user request)
- Layout flipping support is not in scope for this issue (may be worked on in a separate issue when/if there is a user request)
Anyone can now build from this branch and load custom layouts with the `komorebic load-layout layout-file.json` command. The complete schema for custom layout definition is [here](https://github.com/LGUG2Z/komorebi/blob/b3e6a8206c02ee0846c97b15d1d2901fece28b98/komorebi-core/src/custom_layout.rs#L163) and the validation rules are [here](https://github.com/LGUG2Z/komorebi/blob/feature/custom-layouts/komorebi-core/src/custom_layout.rs#L40).
Example of a valid custom layout JSON file:
```json
[
{
"column": "Secondary",
"configuration": {
"Horizontal": 3
}
},
{
"column": "Primary"
},
{
"column": "Tertiary",
"configuration": "Horizontal"
}
]
```
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
Originally created by @LGUG2Z on GitHub (Oct 18, 2021).
Originally assigned to: @LGUG2Z on GitHub.
The default layouts do not always provide for a nice experience on ultrawide monitors and allowing custom layouts to be defined and loaded on the fly would be a big improvement in this area.
@LGUG2Z commented on GitHub (Oct 18, 2021):
Work on this issue has been started here: https://github.com/LGUG2Z/komorebi/tree/feature/custom-layouts
Anyone can now build from this branch and load custom layouts with the
komorebic load-layout layout-file.jsoncommand. The complete schema for custom layout definition is here and the validation rules are here.Example of a valid custom layout JSON file:
@LGUG2Z commented on GitHub (Oct 19, 2021):
Support for YAML files has also been added, example: