updated README
This commit is contained in:
parent
e4a348e401
commit
ff6e428967
1 changed files with 16 additions and 5 deletions
21
README.md
21
README.md
|
@ -1,12 +1,14 @@
|
||||||
|
|
||||||
# ReMux: a friendlier tmux wrapper
|
# ReMux: a friendlier tmux wrapper
|
||||||
|
|
||||||
The main point of this project is shortening commonly-used `tmux`
|
A tmux wrapper and command shortener written in Rust. ReMux's
|
||||||
commands.
|
goal is to wrap tmux commands to be both shorter, and oriented
|
||||||
Attaching, pretty lists, and creating new sessions with group names
|
around session names instead of session IDs.
|
||||||
are currently implemented:
|
|
||||||
|
|
||||||
```bash
|
In their shortest forms, *every* ReMux command is as short or
|
||||||
|
shorter than its equivalent tmux command:
|
||||||
|
|
||||||
|
```sh
|
||||||
|
|
||||||
# new session
|
# new session
|
||||||
tmux new-session -t foo
|
tmux new-session -t foo
|
||||||
|
@ -15,10 +17,19 @@ remux n foo
|
||||||
# lists
|
# lists
|
||||||
tmux ls
|
tmux ls
|
||||||
remux l
|
remux l
|
||||||
|
remux
|
||||||
|
|
||||||
# attach
|
# attach
|
||||||
tmux a -t foo
|
tmux a -t foo
|
||||||
remux a foo
|
remux a foo
|
||||||
|
|
||||||
|
# has
|
||||||
|
tmux has -t foo
|
||||||
|
remux has foo
|
||||||
|
|
||||||
|
# detach
|
||||||
|
tmux detach-client -t foo
|
||||||
|
remux d foo
|
||||||
|
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue