有没有一种简单的方法可以更改 Bash 提示符以修改颜色和显示的文本?我听说这是在 中完成的.bashrc
,但我还没有找到任何好的、简单的修改方法。 Bash 中如何表达颜色?
答案1
我曾经在我的中定义过这些.bashrc
:
export e="\e["
function cls { echo -n "${e}H${e}J${e}0m"; }
function rcls { echo -n "${e}H${e}J${e}S${e}H${e}J${e}0m${e}u${e}J"; } # not quite yet !
# rcls only works when no funny codes have been issued in between, i.e. the buffer is clean
# below the current screen. And then there can be issues with the first line of the buffer.
function bright { echo -n "${e}1m"; }
function normal { echo -n "${e}0m"; }
function colour { echo -n "${e}$1;$2;$3m"; }
function black { echo -n "${e}30m"; }
function bg_black { echo -n "${e}40m"; }
function red { echo -n "${e}31m"; }
function bg_red { echo -n "${e}41m"; }
function green { echo -n "${e}32m"; }
function bg_green { echo -n "${e}42m"; }
function yellow { echo -n "${e}33m"; }
function bg_yellow { echo -n "${e}43m"; }
function blue { echo -n "${e}34m"; }
function bg_blue { echo -n "${e}44m"; }
function magenta { echo -n "${e}35m"; }
function bg_magenta { echo -n "${e}45m"; }
function cyan { echo -n "${e}36m"; }
function bg_cyan { echo -n "${e}46m"; }
function white { echo -n "${e}37m"; }
function bg_white { echo -n "${e}47m"; }
function c_up { echo -n "${e}$1A"; }
function c_down { echo -n "${e}$1B"; } # within
function c_right { echo -n "${e}$1C"; }
function c_left { echo -n "${e}$1D"; } # screen
function c_pos { echo -n "${e}$1;$2f"; } # [Hf]
function c_line { echo -n "${e}$1d"; }
function screentop { echo -n "${e}H"; } # [Hdf]
function linetop { echo -n "${e}G"; }
function buffertop { echo -n "${e}u"; } # depends on other control characters ?
function tab { echo -n "${e}I"; }
function backtab { echo -n "${e}Z"; }
function scrolldown { echo -n "${e}$1T"; } # within screen
function scrolldown_B { echo -n "${e}$1L"; } # scroll down below cursor
function scrollup_B { echo -n "${e}$1M"; } # scroll up below cursor
function clear { echo -n "${e}J"; } # delete to end of screen
function cleanbuffer { echo -n "${e}S"; } # copies first screen to bottom and clears
# everything else above the cursor.
#function xxx { echo -n "${e}xxx"; }
export -f bright normal colour
export -f black bg_black red bg_red green bg_green yellow bg_yellow
export -f blue bg_blue magenta bg_magenta cyan bg_cyan white bg_white
export -f c_up c_down c_right c_left c_pos c_line
export -f screentop linetop buffertop tab backtab
export -f scrolldown scrolldown_B scrollup_B clear cleanbuffer
然后您可以使用它们,例如:
PS1_init="\n$(bright)$(black)$(hostname):\w\n$(bg_blue)"
PS1_end="$(normal)$(bright)\n\! -> $(normal)$(clear)"
export PS1="$PS1_init"'$(date)'"$PS1_end"
这些可能对你有帮助。
我将它们变成函数而不是变量的原因是懒惰。我只是想停止打字。当然如果你寻找效率变量会更好。
归根结底,这些只适合某些终端。因此,如果需要任何帮助,请参阅您的终端文档,而不是 bash 或任何其他 shell 的文档。
答案2
Bash 使用 Ansi 配色方案 - 维基百科文章: http://en.wikipedia.org/wiki/ANSI_escape_code#Colors
例如,这是我的提示:(我喜欢在单独的行上显示提示,但不是每个人都这样做。此外,我的术语有深色背景 - 如果您的术语是浅色,请调整颜色。)
export PS1='\[\e[0;36m\]\u\[\e[0m\]@\[\e[31m\]\h \[\e[0;36m\]\t \[\e[93m\]\w\[\e[36m\] p$$-\!-\$\[\e[0m\]\n\$ '
Bash 手册页的“提示”下描述了特殊的提示值:
\u the username of the current user
\h the hostname up to the first `.'
\t the current time in 24-hour HH:MM:SS format
\w the current working directory, with
$HOME abbreviated with a tilde
(uses the value of the PROMPT_DIRTRIM variable)
$$ PID of the Bash (helps distinguish my many terms.
Useful, eg, if I have to kill something.
\! the history number of this command
\n newline
\$ if the effective UID is 0, a #, otherwise a $
答案3
答案4
这些答案都没有帮助我了解即时定制的工作原理。以下是我通过几个小时在各种不同的论坛、堆栈、维基等搜索中收集到的信息:
找到你的提示
nano ~/.bashrc
手动或使用以下命令搜索您的bashrc
:PS1
Alt+F。这是第一个 bash 提示符,是您输入命令时看到的内容。PS[2-4]
也存在,但很少使用。
定义颜色
在线条上方PS1
添加以下颜色定义:
# Color Variables
c1='\[\033[0;30m\]' # Non-bold color 1
C1='\[\033[1;30m\]' # Bold color 1
c2='\[\033[0;31m\]' # Non-bold color 2
C2='\[\033[1;31m\]' # Bold color 2
c3='\[\033[0;32m\]' # Non-bold color 3
C3='\[\033[1;32m\]' # Bold color 3
c4='\[\033[0;33m\]' # Non-bold color 4
C4='\[\033[1;33m\]' # Bold color 4
c5='\[\033[0;34m\]' # Non-bold color 5
C5='\[\033[1;34m\]' # Bold color 5
c6='\[\033[0;35m\]' # Non-bold color 6
C6='\[\033[1;35m\]' # Bold color 6
c7='\[\033[0;36m\]' # Non-bold color 7
C7='\[\033[1;36m\]' # Bold color 7
c8='\[\033[0;37m\]' # Non-bold color 8
C8='\[\033[1;37m\]' # Bold color 8
NC='\[\033[0m\]' # Back to default color
配置颜色
现在,在您的(大概是图形)终端中,您应该有一些自定义选项。例如,我正在使用 KDE康索尔:Settings > Edit Current Profile... > Appearance > Edit...
显示此定制界面:
现在将它们更改为您喜欢的任何颜色。前景色是您的默认颜色,颜色 1~8 是您定义的可以选择的颜色。并不是说定义是从 0 开始的,而此自定义和您的变量是从 1 开始的。
使用提示中的颜色
对于我的默认提示,我有:
PS1="[\u@\h \W]\$ "
\u
是你的你Sername,\h
是你的H主机名\W
是瓦这里是你所在的目录(哪个目录),并且\$
是提示符(#
当 userid=0 [root] 时)。
您可以通过$c1
在要更改的颜色前面添加 、 $c2` 等来进行自定义。例如,我有:
PS1="$c2[$C8\u$c2@$C7\h $C6\W$c2]$C2\$$NC "
这导致:
注意:您需要NC
在末尾使用将其重置为默认颜色,否则提示(您的输入)之后的所有内容都将是提示中最后一个颜色。