-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmeow-config-template.txt
35 lines (24 loc) · 988 Bytes
/
meow-config-template.txt
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
# Hi I'm a comment. I must start on my own line.
--start-config
# These are all of the config options and their defaults. More can be found in the README: https://github.com/LoganBresnahan/meow/tree/stable#meows-config-section-for-the-meow-configtxt
writable-relative-directory=tmp
auto-check-updates=true
apple-tab-spawn-delay=0.75
unix-shell=bash
kill-signal=15
--end-config
--start-commands
# Group 0 (the boss group). The first command of a group will be at the foreground. You can have as many commands as you like.
sleep 1000
sleep 2000
--new-tab-expire
# Group 1. An "expire" tab will close and its processes will die when Group 0 dies.
# Use "-cd" to tell Meow to change the working directory for a new tab. Do not use a "~" in the path. It will not work.
-cd $HOME/my_project_two
sleep 3000
sleep 4000
--new-tab-endure
# Group 2. An "endure" tab will continue to live after Group 0 dies. You can have as many groups/tabs you like.
sleep 5000
sleep 6000
--end-commands