Manage tmux workspaces from JSON and YAML, pythonic API, shell completion
Project description
tmuxp solves the panes / pains of managing workspaces.
Open to testers
tmuxp is still alpha code and needs a few more weeks until stable. See the Issues tracker to see known issues and for any other concerns.
Install
install tmux, at least version 1.8
libyaml is installed for your distribution.
Install tmuxp:
$ pip install tmuxp
See: Quickstart
CLI Commands
tmuxp attach-session |
<session_name> tmuxp uses switch-client if already inside tmux client. |
tmuxp kill-session |
<session name>. |
tmuxp load |
<file>. Load a workspace yaml / json file. If session already made, will offer to attach. |
tmuxp convert |
<file>. Convert session yaml / json. |
tmuxp import |
[teamocil | tmuxinator] <file> import a teamocil or tmuxinator config. |
Bash completion
For bash, .bashrc:
$ source tmuxp.bash
For tcsh, .tcshrc:
$ complete tmuxp 'p/*/`tmuxp.tcsh`/'
For zsh, .zshrc:
$ source tmuxp.zsh
See installing bash completion to get bash, zsh and tcsh completion working on your machine.
Mini Quickstart
See the full Quickstart in the documentation.
Load from ~/.tmuxp.yaml or ~/.tmuxp.json in current directory.
$ tmuxp load .
Load myconfig.yaml from ~/.tmuxp
$ tmuxp load myconfig.yaml
Load a relative or full config file (bash complete supports this too)
$ tmuxp load ./myconfig.yaml
$ tmuxp load ../myconfig.yaml
$ tmuxp load /var/www/mywebproject/myconfig.yaml
$ mkdir ~/.tmuxp and make a file ~/.tmuxp/test.yaml.
session_name: 2-pane-vertical
windows:
- window_name: my test window
panes:
- pwd
- pwd
$ tmuxp load test.yaml
or ~/.tmuxp/test.json:
{
"windows": [
{
"panes": [
"pwd",
"pwd"
],
"window_name": "my test window"
}
],
"session_name": "2-pane-vertical"
}
$ tmuxp load test.json
See: Examples
tmux support |
1.8, 1.9-dev |
config support |
yaml, json, python dict |
Travis |
|
Docs |
|
API |
|
Changelog |
|
Issues |
|
Source |
|
pypi |
|
License |
BSD. |
git repo |
|
install dev |
See the developing and testing page in the docs for more. |
tests |
|
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.