5 lines
210 B
Bash
5 lines
210 B
Bash
if [ -f ~/.bashrc ]; then
|
|
source ~/.git-prompt.sh
|
|
source ~/.bashrc
|
|
PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]$(__git_ps1 " (%s)")\$ '
|
|
fi
|