mirror of
https://github.com/autistic-symposium/shell-whiz-toolkit.git
synced 2025-05-10 18:55:03 -04:00
.. | ||
tmux-config | ||
README.md | ||
tmux.conf |
Basic Tmux Usage
- Starting a new (named session):
tmux new -s my_session
- Detach the session with
Ctrl-b + d
.
- List sessions with:
tmux ls
- Re-attach a session:
tmux attach-session -t my_session
- Reload a tmux config file:
tmux source-file ~/.tmux.conf
- Kill tmux
tmux kill-server