diff --git a/bashrc b/bashrc index 2ca3cef..fa88ec0 100644 --- a/bashrc +++ b/bashrc @@ -6,7 +6,15 @@ fi if [ "$PS1" = '\s-\v\$ ' ]; then PS1='\[\e[32m\]\u\[\e[37m\]@\[\e[36m\]\h\[\e[37m\] in \[\e[35m\]\w\n\[\e[32m\]\$ \[\e[0m\]' fi - +if [ "$PS2" = '> ' ]; then + PS2='\[\e[1;90m\]*\[\e[0m\] ' +fi +if [ -z "$PS3" ]; then + PS3=$'\e[1;90m? \e[0m' +fi +if [ "$PS4" = '+ ' ]; then + PS4='\[\e[1;90m\]+\[\e[0m\] ' +fi for f in /etc/bash/*.sh; do [ -r "$f" ] && . "$f" done