Skip to content

Instantly share code, notes, and snippets.

@markarasev
Last active August 3, 2020 22:15
Show Gist options
  • Save markarasev/a0cdb3b750581c77e14c45c5eb4942e5 to your computer and use it in GitHub Desktop.
Save markarasev/a0cdb3b750581c77e14c45c5eb4942e5 to your computer and use it in GitHub Desktop.
parse_git_branch() {
git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/ (\1)/'
}
# PS1=<truc1><couleur1><truc2><couleur2>...
# couleur=\[\033[<style>;<couleur et fond>m\]
PS1='${debian_chroot:+($debian_chroot)}\[\033[02;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[01;35m\]$(parse_git_branch)\[\033[00m\] \$ '
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment