## Source X session startup scripts.
for path in "$HOME/.xsessionrc.d/"*".sh"
do
  if [ -r "$path" ]
  then
    . "$path"
  fi
done
unset path