我已将以下代码添加到我的 .bashrc 文件中,这样我就看不到终端中的路径。
# Programster Injection
# Here we can choose the mode for displaying the current path in bash terminal.
# 1 = normal path shown
# 2 = only current directory
# 3 = no path at all.
DISPLAY_OPTION=3
if [ "$DISPLAY_OPTION" = 1 ]; then
PATH_VAR="\w"
elif [ "$DISPLAY_OPTION" = 2 ]; then
PATH_VAR="\W"
elif [ "$DISPLAY_OPTION" = 3 ]; then
PATH_VAR=""
fi
if [ "$color_prompt" = yes ]; then
PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]'$PATH_VAR'\[\033[00m\]\$ '
else
PS1='${debian_chroot:+($debian_chroot)}\u@\h:'$PATH_VAR'\$ '
fi
如您所见,\w
环境PS1
变量中的 负责设置路径的显示。当我打开 byobu 时, PS1 变量从:
\[\e]0;\u@\h: \w\a\]${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\[\033[00m\]\$
至:
\[\e[38;5;202m\]$(byobu_prompt_status)\[\e[38;5;245m\]\u\[\e[00m\]@\[\e[38;5;172m\]\h\[\e[00m\]:\[\e[38;5;5m\]\w\[\e[00m\]$(byobu_prompt_symbol)
实际上,我非常喜欢 byobu 添加的其余格式,所以我该如何制作它,以便每当我打开 byobu 时,它现在会将 PS1 设置为:
PS1='\[\e[38;5;202m\]$(byobu_prompt_status)\[\e[38;5;245m\]\u\[\e[00m\]@\[\e[38;5;172m\]\h\[\e[00m\]:\[\e[38;5;5m\]\[\e[00m\]$(byobu_prompt_symbol) '
这是相同的,但没有\w
.
所以我从技术上来这里是为了找到答案,但很惊讶没有答案。尽管如此,它确实以某种方式促使我进一步研究,我发现 byobu 得到了它的提示
/usr/share/byobu/profiles/bashrc