Use background color for HR
This commit is contained in:
parent
d4aa1a6df3
commit
250c75ce56
1 changed files with 5 additions and 5 deletions
10
.bashrc
10
.bashrc
|
@ -17,17 +17,17 @@ function prompt {
|
|||
|
||||
for (( f=0; f<$FILLS; f++ ))
|
||||
do
|
||||
LINE=$LINE"\e(0q\e(B"
|
||||
LINE=$LINE"\e[0;34;44m-"
|
||||
done
|
||||
|
||||
PS1="\e[1;34m[\t] \w ${LINE}\n"
|
||||
PS1="\e[44;1;37m[\t] \w ${LINE}\e[0m\n"
|
||||
if [ "$SSH_CONNECTION" == "" ]; then
|
||||
# Yellow prompt for local login
|
||||
PS1="$PS1\[\e[1;32m\][\u@\h]"
|
||||
PS1="$PS1\[\e[1;32;40m\][\u@\h]"
|
||||
else
|
||||
PS1="$PS1\[\e[1;33m\][\u@\h]"
|
||||
PS1="$PS1\[\e[1;32;40m\][\u@\h]"
|
||||
fi
|
||||
PS1="$PS1\$(if [ \$? = 0 ]; then echo -e \"\$\"; else echo -e \"\[\033[0;31m\]\$\"; fi)\[\033[0m\] "
|
||||
PS1="$PS1\$(if [ \$? = 0 ]; then echo -e \"\$\"; else echo -e \"\[\e[0;31m\]\$\"; fi)\[\e[0m\] "
|
||||
}
|
||||
PROMPT_COMMAND=prompt
|
||||
|
||||
|
|
Loading…
Reference in a new issue