Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bronzdoc/muxi
Tmux automation :penguin:
https://github.com/bronzdoc/muxi
Last synced: 10 days ago
JSON representation
Tmux automation :penguin:
- Host: GitHub
- URL: https://github.com/bronzdoc/muxi
- Owner: bronzdoc
- Created: 2017-08-22T03:21:33.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2019-08-11T17:54:45.000Z (over 5 years ago)
- Last Synced: 2023-02-27T17:11:27.479Z (over 1 year ago)
- Language: Go
- Homepage:
- Size: 3.08 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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) |
| | |
| | |
| | |
'------------------'------------------'
```