Skip to content

Instantly share code, notes, and snippets.

@arthurbenemann
Created May 20, 2015 23:26
Show Gist options
  • Select an option

  • Save arthurbenemann/34057892cde4805e3b37 to your computer and use it in GitHub Desktop.

Select an option

Save arthurbenemann/34057892cde4805e3b37 to your computer and use it in GitHub Desktop.
# just copy the following into .bashrc
function parse_git_branch {
/usr/bin/git branch --no-color 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/(\1)/'
}
function proml {
local NORMAL="\[\033[0;0m\]"
local BLUE="\[\033[0;34m\]"
local BLACK="\[\033[0;30m\]"
local RED="\[\033[0;31m\]"
local LIGHT_RED="\[\033[1;31m\]"
local GREEN="\[\033[0;32m\]"
local LIGHT_GREEN="\[\033[1;32m\]"
local WHITE="\[\033[1;37m\]"
local LIGHT_GRAY="\[\033[0;37m\]"
case $TERM in
xterm*|screen*)
TITLEBAR='\[\033]0;\u@\h:\w\007\]'
;;
*)
TITLEBAR=""
;;
esac
PS1="${TITLEBAR}\
\u@\h:\w$BLUE\$(parse_git_branch)$NORMAL\\$ "
PS2='> '
PS4='+ '
}
proml
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment