Commit 95847f22 authored by junk@logio.cz's avatar junk@logio.cz

Update .bashrc-extends

parent c1082b28
...@@ -4,7 +4,7 @@ PS1+='`if [ $? = 0 ]; then echo "\[\033[30m\]0"; else echo "\[\033[31m\]1"; fi`' ...@@ -4,7 +4,7 @@ PS1+='`if [ $? = 0 ]; then echo "\[\033[30m\]0"; else echo "\[\033[31m\]1"; fi`'
PS1+="\[\033[1;32m\]\u@$(hostname)\[\033[m\]" # user@server PS1+="\[\033[1;32m\]\u@$(hostname)\[\033[m\]" # user@server
PS1+='\[\033[97m\]\[\033[41m\]\w\[\033[49m\]' PS1+='\[\033[97m\]\[\033[41m\]\w\[\033[49m\]'
if type __git_ps1 | grep -q '^function$' 2>/dev/null; then if [ $(type -t __git_ps1) = "function" ]; then
PS1+='\[\033[34m\]$(__git_ps1) ' PS1+='\[\033[34m\]$(__git_ps1) '
fi fi
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment