# Name of the session
name: __PROJECT_NAME__
# Root directory of the session
root: ~/
# Commands to execute when creating the session
on_create:
# Commands to execute when closing the session
on_stop:
# List of windows of session
windows:
# window1 is the name of the window
- window1:
# Root directory of the window
root: $HOME/
panes:
- echo hello
# You can use null or ~ to use the default window name
- ~:
# Any valid tmux layout is accepted
layout: main-vertical
# Short form for panes, with a single command each:
panes:
- echo 'pane 1'
- echo 'pane 2'