# .bashrc
# sourced by BASH everytime it start
# Set various environment variables

## These should be set by /etc/profile
## But sometime, bash missed them. So here is the push
export PATH="/usr/local/bin:/usr/bin:/bin:/opt/bin:/usr/X11/bin:/usr/local/games"
for SH in /etc/profile.d/*.sh; do
   . $SH
done

# Ok, normal service ...
# Remind the user 
if [ "$UID" = "0" ]; then
  /sbin/echoc "You are working as root" red
  export PATH="$PATH:/usr/local/sbin:/usr/sbin:/sbin"
else
  /sbin/echoc "You are working as $USER" green
fi

## Set a default shell prompt:
export PS1='\w\n\u@\h:\$ '
export PS2='> '

## Set fancy colors
eval `dircolors -b`

## Set this for your first choice
export BROWSER=firefox
#export EXPLORER=konqueror
#export NETWORK_EXPLORER=konqueror
#export AUDIO_PLAYER=xmms
#export VIDEO_PLAYER=gxine

