(Tmux) Disable auto-renaming windows
-
Add the following to
~/.tmux.confconfig file (create if not yet exists):set-option -g allow-rename off -
(If tmux is already running) source the updated config file to let it take effect
Within tmux, enter the following into the command line (
<ctrl-B> :; doing once suffices for all windows)::source-file ~/.tmux.confOr, run the following in shell outside tmux:
tmux source-file ~/.tmux.conf- Also possible to kill all open tmux sessions using
tmux kill-server; use at user’s risk
- Also possible to kill all open tmux sessions using
Reference:
Written on February 15, 2021
