diff options
-rw-r--r-- | app-shells/bash/files/bashrc | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/app-shells/bash/files/bashrc b/app-shells/bash/files/bashrc index 03694691d4a7..8d9c29738b62 100644 --- a/app-shells/bash/files/bashrc +++ b/app-shells/bash/files/bashrc @@ -97,12 +97,8 @@ if ${use_color} ; then alias egrep='egrep --colour=auto' alias fgrep='fgrep --colour=auto' else - if [[ ${EUID} == 0 ]] ; then - # show root@ when we don't have colors - PS1+='\u@\h \w \$ ' - else - PS1+='\u@\h \w \$ ' - fi + # show root@ when we don't have colors + PS1+='\u@\h \w \$ ' fi for sh in /etc/bash/bashrc.d/* ; do |