# Perhaps a bit too secure for some.
umask 027

# if running bash.
if [ -n "$BASH_VERSION" ]; then
    # include .bashrc if it exists.
    if [ -f "$HOME/.bashrc" ]; then
	. "$HOME/.bashrc"
    fi
fi

# include sbin in PATH
if [ -d "/sbin" ] ; then
    PATH="/sbin:$PATH"
fi
if [ -d "/usr/sbin" ] ; then
    PATH="/usr/sbin:$PATH"
fi

# set PATH so it includes user's private bin if it exists.
if [ -d "$HOME/bin" ] ; then
   export PATH="$HOME/bin:$PATH"
fi

# Set custom dircolours.
eval "$(dircolors -b $HOME/.dircolors)"
