shell-whiz-toolkit/tmux
2024-10-15 09:59:09 +09:00
..
tmux-config add things resources from the last 5 years over machines 2024-10-15 09:59:09 +09:00
README.md add things resources from the last 5 years over machines 2024-10-15 09:59:09 +09:00
tmux.conf add things resources from the last 5 years over machines 2024-10-15 09:59:09 +09:00

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