https://github.com/maxmx03/tmx
tmux session manager
https://github.com/maxmx03/tmx
bash session-management tmux tmx
Last synced: 9 months ago
JSON representation
tmux session manager
- Host: GitHub
- URL: https://github.com/maxmx03/tmx
- Owner: maxmx03
- Created: 2024-09-10T20:25:41.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-09-14T02:12:49.000Z (over 1 year ago)
- Last Synced: 2024-10-31T10:04:51.318Z (about 1 year ago)
- Topics: bash, session-management, tmux, tmx
- Language: Shell
- Homepage:
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# tmx
## Installation
```bash
echo "source $HOME/path/to/tmx.sh" >> $HOME/.bashrc
```
## Usage
```bash
tmx attach # attach session
tmx new session-name # create new session
tmx newx config.json # create a more complex session
tmx rm # remove session
tmx help
```
### newx example
```json
{
"sessions": [
{
"name": "solarized",
"root": "~/github/solarized.nvim",
"windows": [
"nvim",
"docker compose up",
"styla -f ./stylua.toml ."
]
},
{
"name": "docs",
"root": "~/github/milianor-docs",
"windows": [
"nvim",
"pnpm start"
]
}
]
}
```
## Dependencies
- [jq](https://jqlang.github.io/jq/)
```bash
pacman -S jq
```
## Alternatives
- [tmuxinator](https://github.com/tmuxinator/tmuxinator)
- [tmuxp](https://github.com/tmux-python/tmuxp)