我使用powerline-shell,我的提示看起来像:
如何在提示中去掉我的名字和主机名?
我试图在.bashrc
文件中搜索PS1
变量:
if [ "$color_prompt" = yes ]; then
PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ '
else
PS1='${debian_chroot:+($debian_chroot)}\u:\w\$ '
fi
我必须编辑哪个目标?