当我运行多个窗口时,在终端名称中看到“bash - ”用户名“'是没用的,有没有办法重命名这些窗口?
答案 0 :(得分:0)
您可以将以下功能添加到您的bashrc
setTitle() {
# configure tmux to allow xterm set title sequence
tmux set-window-option automatic-rename off
tmux set-option allow-rename off
tmux set-option set-titles-string "#T"
tmux set-option set-titles on
# set terminal title
echo -ne "\033]0;$@\007"
}
然后运行setTitle "my terminal name"
。
有时候bash提示符(PS1
)也包含\033]0;...\007
,在这种情况下你需要修改它以不允许覆盖setTitle函数设置的标题