Skip to content

Instantly share code, notes, and snippets.

@onmax
Last active January 6, 2022 21:53
Show Gist options
  • Save onmax/f96a9e97125cd3f68a94aaf38b9ddc8a to your computer and use it in GitHub Desktop.
Save onmax/f96a9e97125cd3f68a94aaf38b9ddc8a to your computer and use it in GitHub Desktop.
PS1 for bash
parse_git_branch() {
git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/ (\1)/'
}
PS1="\[\033[01;32m\][\@]\[$(tput sgr0)\] \[$(tput sgr0)\]\[\033[01;34m\]\W\[$(tput sgr0)\] \[\e[91m\]\$(parse_git_branch)\e[00m\]\n > \[$(tput sgr0)\]"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment