teamocil/spec/fixtures/layouts.yml

35 lines
781 B
YAML
Raw Normal View History

# Simple two windows layout
two-windows:
windows:
- name: "foo"
2011-10-23 23:47:05 +00:00
root: "/foo"
splits:
- cmd: "echo 'foo'"
- cmd: "echo 'foo again'"
width: 50
- name: "bar"
2011-10-23 23:47:05 +00:00
root: "/bar"
splits:
2011-10-23 23:47:05 +00:00
- cmd:
- "echo 'bar'"
- "echo 'bar in an array'"
- cmd: "echo 'bar again'"
width: 50
2011-10-23 21:43:48 +00:00
2011-10-23 23:47:05 +00:00
# Simple two windows layout with filters
two-windows-with-filters:
2011-10-23 21:43:48 +00:00
windows:
- name: "foo"
2011-10-23 23:47:05 +00:00
root: "/foo"
filters:
before:
- "echo first before filter"
- "echo second before filter"
after:
- "echo first after filter"
- "echo second after filter"
2011-10-23 21:43:48 +00:00
splits:
2011-10-23 23:47:05 +00:00
- cmd: "echo 'foo'"
- cmd: "echo 'foo again'"
width: 50