-
Notifications
You must be signed in to change notification settings - Fork 18
/
test-layout.kdl
48 lines (48 loc) · 1.13 KB
/
test-layout.kdl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
layout {
default_tab_template {
pane size=1 borderless=true {
plugin location="zellij:tab-bar"
}
children
pane size=2 borderless=true {
plugin location="zellij:status-bar"
}
}
tab name="Do" focus=true {
floating_panes {
pane {
name "cluster"
command "just"
args "cluster-create"
close_on_exit true
x "20%"
y "20%"
width "60%"
height "60%"
focus true
}
}
pane {
name "test-watch"
command "just"
args "test-watch"
start_suspended true
size "70%"
}
pane {
name "get-managed"
command "viddy"
args "kubectl" "get" "managed"
start_suspended true
size "30%"
}
}
tab name="Done" {
pane {
name "cluster-destroy"
command "just"
args "cluster-destroy"
start_suspended true
}
}
}