# COLOR PROMPTS FOR FOUI - FAST OPTICAL USER IDENTIFICATION
# =========================================================
if [ `/usr/bin/whoami` = 'root' ]
then
export XFOUND_ROOT_USER='YES'
        # Do not set PS1 for dumb terminals
        if [ "$TERM" != 'dumb'  ] && [ -n "$BASH" ]
        then
                export PS1='[33[01;31m]h [33[01;34m]w $ [33[00m]'
        fi
else
export XFOUND_NORMAL_USER='YES'
        # Do not set PS1 for dumb terminals
        if [ "$TERM" != 'dumb'  ] && [ -n "$BASH" ]
        then
                export PS1='[33[01;32m]u@h [33[01;34m]w $ [33[00m]'
        fi
fi
%d bloggers like this: