* initial draft * working with floating panes as well * use the same method for applying an initial layout to tiled panes * some refactoring * all code paths working with logical positioning fallback! * get tests to compile * get e2e tests to pass * fix e2e remote runner * breadth-first layout sorting * fix some bugs * style(fmt): rustfmt * style(fmt): remove comments
104 lines
2.9 KiB
Text
104 lines
2.9 KiB
Text
tab_template name="ui" {
|
|
pane size=1 borderless=true {
|
|
plugin location="tab-bar" {
|
|
hide_swap_layout_indication true
|
|
}
|
|
}
|
|
children
|
|
pane size=2 borderless=true {
|
|
plugin location="status-bar" {
|
|
classic true
|
|
}
|
|
}
|
|
}
|
|
|
|
swap_tiled_layout name="vertical" {
|
|
ui max_panes=5 {
|
|
pane split_direction="vertical" {
|
|
pane
|
|
pane { children; }
|
|
}
|
|
}
|
|
ui max_panes=8 {
|
|
pane split_direction="vertical" {
|
|
pane { children; }
|
|
pane { pane; pane; pane; pane; }
|
|
}
|
|
}
|
|
ui max_panes=12 {
|
|
pane split_direction="vertical" {
|
|
pane { children; }
|
|
pane { pane; pane; pane; pane; }
|
|
pane { pane; pane; pane; pane; }
|
|
}
|
|
}
|
|
}
|
|
|
|
swap_tiled_layout name="horizontal" {
|
|
ui max_panes=5 {
|
|
pane
|
|
pane
|
|
}
|
|
ui max_panes=8 {
|
|
pane {
|
|
pane split_direction="vertical" { children; }
|
|
pane split_direction="vertical" { pane; pane; pane; pane; }
|
|
}
|
|
}
|
|
ui max_panes=12 {
|
|
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=5 {
|
|
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 "5%"; y 1; width "90%"; height "90%"; }
|
|
pane { x "5%"; y 2; width "90%"; height "90%"; }
|
|
pane { x "5%"; y 3; width "90%"; height "90%"; }
|
|
pane { x "5%"; y 4; width "90%"; height "90%"; }
|
|
pane { x "5%"; y 5; width "90%"; height "90%"; }
|
|
pane { x "5%"; y 6; width "90%"; height "90%"; }
|
|
pane { x "5%"; y 7; width "90%"; height "90%"; }
|
|
pane { x "5%"; y 8; width "90%"; height "90%"; }
|
|
pane { x "5%"; y 9; width "90%"; height "90%"; }
|
|
pane { 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 { y "55%"; width "45%"; height "45%"; }
|
|
pane { x "1%"; y "1%"; width "45%"; }
|
|
pane { x "50%"; y "1%"; width "45%"; }
|
|
}
|
|
floating_panes max_panes=4 {
|
|
pane { x "1%"; y "55%"; width "45%"; height "45%"; }
|
|
pane { x "50%"; y "55%"; width "45%"; height "45%"; }
|
|
pane { x "1%"; y "1%"; width "45%"; height "45%"; }
|
|
pane { x "50%"; y "1%"; width "45%"; height "45%"; }
|
|
}
|
|
}
|