summaryrefslogtreecommitdiffstats
path: root/bashrc
diff options
context:
space:
mode:
authorJérémy Zurcher <jeremy@asynk.ch>2013-02-04 10:26:39 +0100
committerJérémy Zurcher <jeremy@asynk.ch>2013-02-04 10:26:39 +0100
commit9e3d72ec8721a24ee5a9bea432d92d1a6170e025 (patch)
treeec246573c95526770b87e5a348a08eeedaf83ea4 /bashrc
parent908359ebd835efe3810a525ce2acbac49f2baa4b (diff)
downloadbin-9e3d72ec8721a24ee5a9bea432d92d1a6170e025.zip
bin-9e3d72ec8721a24ee5a9bea432d92d1a6170e025.tar.gz
bashrc: fix PS1
Diffstat (limited to 'bashrc')
-rw-r--r--bashrc2
1 files changed, 1 insertions, 1 deletions
diff --git a/bashrc b/bashrc
index 9d08cea..3fec074 100644
--- a/bashrc
+++ b/bashrc
@@ -10,7 +10,7 @@ if [ `whoami` = "root" ]; then # effective uid
export PS1='\[\033[01;47;31m\]\h\[\033[40;31m\] \u \[\033[37m\]\W \$ \[\033[00m\]'
else
# export PS1='\[\033[01;47;31m\]\h\[\033[40;34m\] \u \[\033[37m\]\W $(parse_git_branch) \$ \[\033[00m\]'
- export PS1='\[\033[01;33m\]\u\[\033[01;35m\]@\[\033[00;31m\]\h\[\033[00m\]:\[\033[0;33m \w $(parse_git_branch) \[\033[00m\]\$ '
+ export PS1='\033[01;33m\u\033[01;35m@\033[00;31m\h\033[00m:\033[0;33m \w $(parse_git_branch) \033[0m\$ '
fi
PS2='> '
unset PROMPT_COMMAND