tmux Snippets
Snippets
Section titled “Snippets”# New sessiontmux new -s session_name
# New session, createtmux new
# List active sessionstmux ls
# Attach to session, attaches to most recent onetmux attach
# Attach to session by nametmux attach -t session_name# Attach to session by numbertmux a -t <number>
# Rename a tmux sessiontmux rename-session -t 0 session_name
# Rename current tmux sessiontmux rename-session new_session_name
# Change title of current panetmux select-pane -T title1
# Source tmux config after changestmux source ~/.config/tmux/tmux.conf## or in tmux## prefix + :source-file ~/.config/tmux/tmux.conf## prefix + I
# Show every session, window, pane, and otherstmux info