mirror of
https://github.com/autistic-symposium/shell-whiz-toolkit.git
synced 2025-05-12 11:42:20 -04:00
384 B
384 B
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