if ! grep -q /usr/X11R6/lib /etc/ld.so.conf
then echo "/usr/X11R6/lib/" >> /etc/ld.so.conf
     ldconfig
fi
if [ ! -f /etc/X11/xorg.conf ] && [ -f /etc/X11/XF86Config ]; then
  message "You don't have a xorg.conf file."
  if query "Should i copy your XF86Config to xorg.conf (may need minor editing)?" y
  then cp /etc/X11/XF86Config /etc/X11/xorg.conf
  fi
fi
