如何更改终端标题?

如何更改终端标题?

在 Windows 中,我只需输入 title mytitle 即可更改终端的标题。

c:\title mytitle

在 ubuntu 下该怎么做?

答案1

一种选择:

gnome-terminal --title="my_title"

为了使其工作,你可能必须评论这个片段~/.bashrc

case "$TERM" in
xterm*|rxvt*)
    # Comment this
    #PS1="\[\e]0;${debian_chroot:+($debian_chroot)}\u@\h: \w\a\]$PS1"
    ;;
*)
    ;;
esac

您也可以尝试发出命令

echo -ne "\033]0;my_title\007"

也可以看看

答案2

这很简单


set-title(){
  ORIG=$PS1
  TITLE="\e]2;$@\a"
  PS1=${ORIG}${TITLE}
}

参考 https://blog.programster.org/ubuntu-16-04-set-terminal-title

相关内容