zellij/zellij-utils/assets/layouts/compact.swap.kdl
Aram Drevekenin 5bcc1bb382
fix(layout): various parser and ui fixes (#2191)
* fix(layout): error on nodes outside layout node

* fix(layout): move stacked property to pane

* fix(layout): various stack exceptions

* fix(ui): non-flexible stacked pane titles now take up their full length

* fix(ui): stack titles with no-pane-frames take up their proper length

* style(fmt): rustfmt
2023-02-25 11:16:11 +01:00

91 lines
2.4 KiB
Text

tab_template name="ui" {
children
pane size=1 borderless=true {
plugin location="zellij:compact-bar"
}
}
swap_tiled_layout name="vertical" {
ui max_panes=4 {
pane split_direction="vertical" {
pane
pane { children; }
}
}
ui max_panes=7 {
pane split_direction="vertical" {
pane { children; }
pane { pane; pane; pane; pane; }
}
}
ui max_panes=11 {
pane split_direction="vertical" {
pane { children; }
pane { pane; pane; pane; pane; }
pane { pane; pane; pane; pane; }
}
}
}
swap_tiled_layout name="horizontal" {
ui max_panes=3 {
pane
pane
}
ui max_panes=7 {
pane {
pane split_direction="vertical" { children; }
pane split_direction="vertical" { pane; pane; pane; pane; }
}
}
ui max_panes=11 {
pane {
pane split_direction="vertical" { children; }
pane split_direction="vertical" { pane; pane; pane; pane; }
pane split_direction="vertical" { pane; pane; pane; pane; }
}
}
}
swap_tiled_layout name="stacked" {
ui min_panes=4 {
pane split_direction="vertical" {
pane
pane stacked=true { children; }
}
}
}
swap_floating_layout name="staggered" {
floating_panes
}
swap_floating_layout name="enlarged" {
floating_panes max_panes=10 {
pane { x 1; y 1; width "90%"; height "90%"; }
pane { x 2; y 2; width "90%"; height "90%"; }
pane { x 3; y 3; width "90%"; height "90%"; }
pane { x 4; y 4; width "90%"; height "90%"; }
pane { x 5; y 5; width "90%"; height "90%"; }
pane { x 6; y 6; width "90%"; height "90%"; }
pane { x 7; y 7; width "90%"; height "90%"; }
pane { x 8; y 8; width "90%"; height "90%"; }
pane { x 9; y 9; width "90%"; height "90%"; }
pane focus=true { x 10; y 10; width "90%"; height "90%"; }
}
}
swap_floating_layout name="spread" {
floating_panes max_panes=1 {
pane {y "50%"; x "50%"; }
}
floating_panes max_panes=2 {
pane { x "1%"; y "25%"; width "45%"; }
pane { x "50%"; y "25%"; width "45%"; }
}
floating_panes max_panes=3 {
pane focus=true { y "55%"; width "45%"; height "45%"; }
pane { x "1%"; y "1%"; width "45%"; }
pane { x "50%"; y "1%"; width "45%"; }
}
}