Last active
August 29, 2015 14:23
-
-
Save leedavis81/fa4989440dfa8aa20eb6 to your computer and use it in GitHub Desktop.
.basrc shell prompt (PS1)
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
if [ $(id -u) -eq 0 ]; | |
then | |
PS1="\[$bold\]\[$dk_blue\]\@\[$black\] \[$red\]\u\[$yellow\]@\[$green\]\h\[$pink\]:\w\[$reset\] $ " | |
else | |
PS1="\[$bold\]\[$dk_blue\]\@\[$black\] \[$green\]\u\[$yellow\]@\[$green\]\h\[$pink\]:\w\[$reset\] $ " | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment