2011-10-02 12:58:34 +00:00
# Teamocil
2011-10-15 14:28:35 +00:00
Teamocil is a simple tool used to automatically create sessions, windows and splits in [tmux ](http://tmux.sourceforge.net/ ) with YAML files.
2011-10-02 12:58:34 +00:00
2011-12-26 21:32:05 +00:00
[![Build Status ](https://secure.travis-ci.org/remiprev/teamocil.png )](http://travis-ci.org/remiprev/teamocil)
2011-10-02 12:58:34 +00:00
## Usage
2011-12-10 13:11:36 +00:00
```bash
$ gem install teamocil
$ mkdir ~/.teamocil
$ teamocil --edit sample
$ tmux
$ teamocil sample
```
2011-10-02 12:58:34 +00:00
## Options
* `--here` opens the session in the current window, it doesn’ t create an empty first window.
* `--layout` takes a custom file path to a YAML layout file.
* `--edit` opens the layout file (whether or not `--layout` is used) with `$EDITOR` .
2012-01-26 01:52:34 +00:00
* `--list` lists all available layouts.
2011-10-02 12:58:34 +00:00
## Layout file structure
2011-10-02 13:01:45 +00:00
A layout file is a single YAML file located in `~/.teamocil` (eg. `~/.teamocil/my-project.yml` ).
2011-10-02 12:58:34 +00:00
### Session
You can wrap your entire layout file in a `session` and Teamocil will rename the current session (so that you can find it more easily when running `tmux list-sessions` ) before creating your windows.
#### Keys
* `name` (the name of the session)
#### Example
2011-12-10 13:11:36 +00:00
```yaml
session:
name: "my-awesome-session"
windows:
[windows list]
```
2011-10-02 12:58:34 +00:00
### Windows
If you are not using a top-level `session` key, then the first key of your layout file will be `windows` , an array of window items.
#### Item keys
* `name` (the name that will appear in `tmux` statusbar)
* `root` (the directory in which every split will be created)
2011-10-08 02:03:51 +00:00
* `filters` (a hash of `before` and `after` commands to run for each split)
2011-10-02 12:58:34 +00:00
* `splits` (an array of split items)
2011-10-20 11:21:29 +00:00
* `options` (a hash of tmux options, see `man tmux` for a list)
2011-10-02 12:58:34 +00:00
#### Example
2011-12-10 13:11:36 +00:00
```yaml
windows:
- name: "my-first-window"
options:
synchronize-panes: true
root: "~/Projects/foo-www"
filters:
before:
- "echo 'Let’ s use ruby-1.9.2 for each split in this window.'"
- "rvm use 1.9.2"
splits:
[splits list]
- name: "my-second-window"
root: "~/Projects/foo-api"
splits:
[splits list]
- name: "my-third-window"
root: "~/Projects/foo-daemons"
splits:
[splits list]
```
2011-10-02 12:58:34 +00:00
### Splits
Every window must define an array of splits that will be created within it. A vertical or horizontal split will be created, depending on whether the `width` or `height` parameter is used.
#### Item keys
* `cmd` (the commands to initially execute in the split)
* `width` (the split width, in percentage)
* `height` (the split width, in percentage)
* `target` (the split to set focus on, before creating the current one)
#### Example
2011-12-10 13:11:36 +00:00
```yaml
windows:
- name: "my-first-window"
root: "~/Projects/foo-www"
filters:
before: "rvm use 1.9.2"
after: "echo 'I am done initializing this split.'"
splits:
- cmd: "git status"
- cmd: "bundle exec rails server --port 4000"
width: 50
- cmd:
- "sudo service memcached start"
- "sudo service mongodb start"
height: 50
```
2011-10-02 12:58:34 +00:00
## Layout examples
2011-10-10 02:42:37 +00:00
See more example files in the `examples` directory.
2011-10-02 12:58:34 +00:00
### Simple two splits window
#### Content of `~/.teamocil/sample-1.yml`
2011-12-10 13:11:36 +00:00
```yaml
windows:
- name: "sample-two-splits"
root: "~/Code/sample/www"
splits:
- cmd: ["pwd", "ls -la"]
- cmd: "rails server --port 3000"
width: 50
```
2011-10-02 12:58:34 +00:00
#### Result of `$ teamocil sample-1`
.------------------.------------------.
| (0) | (1) |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
'------------------'------------------'
### Four tiled splits window
#### Content of `~/.teamocil/sample-2.yml`
2011-12-10 13:11:36 +00:00
```yaml
windows:
- name: "sample-four-splits"
root: "~/Code/sample/www"
splits:
- cmd: "pwd"
- cmd: "pwd"
width: 50
- cmd: "pwd"
height: 50
target: "bottom-right"
- cmd: "pwd"
height: 50
target: "bottom-left"
```
2011-10-02 12:58:34 +00:00
#### Result of `$ teamocil sample-2`
.------------------.------------------.
| (0) | (1) |
| | |
| | |
| | |
|------------------|------------------|
| (3) | (2) |
| | |
| | |
| | |
'------------------'------------------'
## Extras
### Zsh autocompletion
To get autocompletion when typing `teamocil <Tab>` in a zsh session, add this line to your `~/.zshrc` file:
2011-12-10 13:11:36 +00:00
```zsh
compctl -g '~/.teamocil/*(:t:r)' teamocil
```
2011-10-02 12:58:34 +00:00
2011-10-15 14:28:35 +00:00
## Todo list
2011-10-24 00:15:54 +00:00
* Making sure the layout is valid before executing it (ie. throw exceptions).
2012-02-24 15:16:29 +00:00
* Add more specs.
2011-10-15 14:28:35 +00:00
2011-10-02 12:58:34 +00:00
## Contributors
Feel free to contribute and submit issues/pull requests [on GitHub ](https://github.com/remiprev/teamocil/issues ), just like these fine folks did:
* Samuel Garneau ([garno](https://github.com/garno))
* Jimmy Bourassa ([jbourassa](https://github.com/jbourassa))
2011-10-24 00:15:54 +00:00
Take a look at the `spec` folder before you do, and make sure `bundle exec rake spec` passes after your modifications :)
2011-10-02 12:58:34 +00:00
## License
2012-02-07 15:31:27 +00:00
Teamocil is © 2011-2012 [Rémi Prévost ](http://exomel.com ) and may be freely distributed under the [LITL license ](http://litl.info/ ). See the `LICENSE` file.