0

我正在尝试微调我的 .bashrc 文件,并希望我可以让 chroot 成为不同于默认白色的颜色。除了一些 git 的东西和配色方案之外,我的 rc 文件非常接近默认值。问题是我似乎无法在调用 debian_chroot 之前将 chroot 设置为红色而没有问题。这是我认为相关的摘录。

source ~/.git-prompt.sh
if [ "$color_prompt"=yes ]; then
    PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]$(__git_ps1 "(%s)") '
    PS1="$PS1\[\033[00m\]\u@\h:\n\[\033[01;34m\]\w\[\033[00m\] \$ "
else
    PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w $(__git_ps1 "(%s)") \$ '
fi

# 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
unset color_prompt force_color_prompt

如何在我的 bash 提示符中将 chroot 颜色设置为红色?

4

0 回答 0