Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/bronzdoc/muxi

Tmux automation :penguin:
https://github.com/bronzdoc/muxi

Last synced: 10 days ago
JSON representation

Tmux automation :penguin:

Awesome Lists containing this project

README

        

# Muxi - WIP

## Examples

### Simple two pane window

```yaml
windows:
- name: sample-two-panes
root: ~/sample
layout: even-horizontal
panes:
- git status
- rails server
```

```
.------------------.------------------.
| (0) | (1) |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
'------------------'------------------'
```

### Simple three pane window

```yaml
windows:
- name: sample-three-panes
root: ~/sample
layout: main-vertical
panes:
- vim
- commands:
- git pull
- git status
- rails server
```

```
.------------------.------------------.
| (0) | (1) |
| | |
| | |
| | |
| |------------------|
| | (2) |
| | |
| | |
| | |
'------------------'------------------'
```

### Simple four pane window

```yaml
windows:
- name: sample-four-panes
root: ~/sample
layout: tiled
panes:
- vim test.yml
- go get github.com/goby-lang/goby
- git status
- go test
```

```
.------------------.------------------.
| (0) | (1) |
| | |
| | |
| | |
|------------------|------------------|
| (2) | (3) |
| | |
| | |
| | |
'------------------'------------------'
```