diff options
Diffstat (limited to 'bashrc/common')
-rw-r--r-- | bashrc/common/prompt.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bashrc/common/prompt.sh b/bashrc/common/prompt.sh index ddb2679..fe2a139 100644 --- a/bashrc/common/prompt.sh +++ b/bashrc/common/prompt.sh @@ -16,9 +16,9 @@ __make_prompt() { [[ -z "$user" && -z "$host" ]] || host="${host} " if [[ $(id -u) -eq 0 ]]; then - PS1UH="$(pcolor lred)${user}${host}$(pcolor) " + PS1UH="$(pcolor lred)${user}${host}$(pcolor)" else - PS1UH="$(pcolor lgreen)${user}${host}$(pcolor) " + PS1UH="$(pcolor lgreen)${user}${host}$(pcolor)" fi # working directory |