从 Gnome 终端窗口标题中删除用户和主机名?

从 Gnome 终端窗口标题中删除用户和主机名?

有人知道是否可以从 Gnome 终端删除用户和主机名?

我希望只看到那里正在运行的命令。

在此处输入图片描述

答案1

这很容易做到:

  1. 打开你的终端(如果尚未打开)

  2. 打开.bashrc文件

  3. 找到此部分:

    # If this is an xterm set the title to user@host:dir
    case "$TERM" in
    xterm*|rxvt*)
        PS1="\[\e]0;${debian_chroot:+($debian_chroot)}\u@\h: \w\a\]$PS1"
        ;;
    *)
        ;;
    esac
    
  4. 消除\u@\h:

  5. 保存文件并重新启动终端。

相关内容