#
# Run bashrc for user
#

. ~/.bashrc

#
# Point readline to correct inputrc
#
export INPUTRC=/etc/inputrc

#
# Enable colours for ls
#
alias ls="ls --color=auto"

#
# Execute scripts in /etc/profile.d
#
for script in /etc/profile.d/*.sh ; do
        if [ -r $script ] ; then
                . $script
        fi
done

