From 76a26161783b6c621c6209c4c1c2f91fa7e55c5e Mon Sep 17 00:00:00 2001 From: mr-bolle Date: Mon, 23 Dec 2019 17:47:59 +0100 Subject: [PATCH] add user variable and reset color --- bash_profile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/bash_profile b/bash_profile index 87fdabb..d09cfca 100644 --- a/bash_profile +++ b/bash_profile @@ -25,6 +25,8 @@ BROWN="\[\e[0;33m\]" LIGHT_GRAY="\[\e[0;37m\]" WHITE="\[\e[1;37m\]" +# Reset Color +Color_Off='\033[0m' # Text Reset + # Change command prompt display -NAME="your_name_here" -export PS1="${YELLOW}\W:${PURPLE}${RED} ${NAME}\$ " +PS1="${YELLOW}\W:${PURPLE}${RED} \u ${Color_Off}\$ "