Created
July 31, 2012 02:13
-
-
Save dbtlr/3212807 to your computer and use it in GitHub Desktop.
Fancy command prompt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# PS1 Prompt Style Script | |
function parse_git_branch { | |
ref=$(git symbolic-ref HEAD 2> /dev/null) || return | |
echo " ("${ref#refs/heads/}")" | |
} | |
# PS1 prompt color vars | |
RED="\[\033[1;31m\]" | |
YELLOW="\[\033[0;33m\]" | |
GREEN="\[\033[0;32m\]" | |
WHITE="\[\033[0;0m\]" | |
PURPLE="\[\033[1;35m\]" | |
BLUE="\[\033[0;34m\]" | |
TIME="\t" | |
DIRNAME="\w" | |
USERNAME="\u" | |
HOSTNAME="\h" | |
export PS1="\n($GREEN$TIME$WHITE) $BLUE$USERNAME$WHITE@$BLUE$HOSTNAME$WHITE:$DIRNAME$RED\$(parse_git_branch)\n$WHITE\$ " |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment