remux/README.md

25 lines
335 B
Markdown
Raw Normal View History

2023-04-06 13:34:32 -04:00
# ReMux: a friendlier tmux wrapper
The main point of this project is shortening commonly-used `tmux`
commands.
Attaching, pretty lists, and creating new sessions with group names
are currently implemented:
```bash
# new session
tmux new-session -t foo
remux n foo
# lists
tmux ls
remux l
# attach
tmux a -t foo
remux a foo
```