forked from tmux-python/tmuxp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.tmuxp.json
44 lines (44 loc) · 948 Bytes
/
.tmuxp.json
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
{
"before_script": "./bootstrap_env.py",
"windows": [
{
"panes": [
{
"focus": true
},
"pane",
"make watch_test"
],
"options": {
"main-pane-height": 35
},
"layout": "main-horizontal",
"shell_command_before": [
"[ -d .venv -a -f .venv/bin/activate ] && source .venv/bin/activate"
],
"focus": true,
"window_name": "tmuxp"
},
{
"panes": [
{
"focus": true
},
"pane",
"make serve",
"make watch"
],
"start_directory": "doc/",
"layout": "main-horizontal",
"shell_command_before": [
"[ -d ../.venv -a -f ../.venv/bin/activate ] && source ../.venv/bin/activate"
],
"options": {
"main-pane-height": 35
},
"window_name": "docs"
}
],
"session_name": "tmuxp",
"start_directory": "./"
}