t
is a small wrapper around tmux
. Its usage is as follows.
t list
: List available tmux sessions (equiv totmux list-sessions
).t new NAME
: Create a new session with the specified name (equiv totmux new-session -s NAME
).t NAME
: Attach to the named session (equiv totmux attach -t NAME
);t attach NAME
also works.t
(no arguments): Runstmux attach || tmux
which will either attach to the last session or start a new tmux instance.