3

我希望我的窗口标题栏显示我的 PWD。在我的.bashrc我有这个似乎对 Bash 有用:

# 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

但是,当我使用 Tmux 时,窗口会显示我启动 Tmux 的目录,而不是我在 Tmux 中导航到的当前目录。

下面,我在 中启动了 Tmux ~,然后导航到~/Downloads. 标题栏仍然显示~。在它后面是一个窗口,我~/Downloads只使用 Bash 导航到该窗口;它显示了我想要的: 在此处输入图像描述

以下是我已经尝试过但不起作用的事情:

4

1 回答 1

4

我想当我尝试这个之前它与其他一些变化相结合......现在它可以工作了:

~/.tmux.conf

set -g set-titles on
set -g set-titles-string '#T'

~/.bashrc(顺便说一下,我添加|screen到 switch 语句):

if [ "$color_prompt" = yes ]; then
    PS1='> '
    #PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ '
else
    PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w\$ '
fi
unset color_prompt force_color_prompt

# If this is an xterm set the title to user@host:dir
case "$TERM" in
xterm*|rxvt*|screen)
    PS1="\[\e]0;${debian_chroot:+($debian_chroot)}\u@\h: \w\a\]$PS1"
    ;;
*)
    ;;
esac
于 2014-02-06T17:56:14.690 回答