# .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

## Set shell prompt if you don't like the default
#PS1="${COLOR4}\w${COLOR_9}\n\u@\h:\$ "
#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

