Skip to content

Instantly share code, notes, and snippets.

@fwindpeak
Forked from Flushot/ps1.sh
Last active September 21, 2018 02:49
Show Gist options
  • Select an option

  • Save fwindpeak/77cc44bfd23639c2b6281ad125acafd1 to your computer and use it in GitHub Desktop.

Select an option

Save fwindpeak/77cc44bfd23639c2b6281ad125acafd1 to your computer and use it in GitHub Desktop.
PS1
__git_ps1 ()
{
local b="$(git symbolic-ref HEAD 2>/dev/null)";
if [ -n "$b" ]; then
printf " (%s)" "${b##refs/heads/}";
fi
}
export PS1='\[\e]0;\w\a\]\n\[\e[32m\]\u@\h \[\e[33m\]\w\[\033[0;36m\]$(__git_ps1)\[\033[0m\]\n\$ '
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment