
# If not running interactively, don't do anything
case $- in
    *i*) ;;
      *) return;;
esac

# Source global definitions
if [ -f /etc/bashrc ]; then
        . /etc/bashrc
fi

append-path() { eval "$1=\$$1:$2" ; }
prepend-path() { eval "$1=$2:\$$1" ; }
PS1='\u@\h:\w\n\t \d \$ '

for rc in bash_completion.sh gnome-ssh-askpass.sh modules.sh ; do
	[[ -f /etc/profile.d/$rc ]] && source /etc/profile.d/$rc
done

for rc in ~/.bash.d/* ; do
	[[ -f "$rc" ]] && [[ -x "$rc" ]] && source "$rc"
done

ssh-dss() { ssh -oPubkeyAcceptedKeyTypes=+ssh-dss "$@" ; }

[[ -f ~/.Xmodmap ]] && xmodmap ~/.Xmodmap
