This worked for me:
All changes to files are marked in red. You have to fill in values that fit your monitor so don't copy paste this. Im not the one that has written this solution, but the site where it was seems to like giving a 403 (http://www.ticktockcomputers.com/blo...lpaper-fix/):p
First make a backup of the files we are going to edit.
Code:
cp /boot/grub/menu.lst /boot/grub/menu.lst.bck
cp /etc/X11/xorg.conf /etc/X11/xorg.conf.backup
Comment out a line in menu.lst
Code:
nano /boot/grub/menu.lst
#vga=0x317image=28effc24-0f00-440d-858d-82788dc63056/boot/grub/vga=0x317.xpm.gz
Edit your xorg.conf file and add DefaultDepth 24 or what ever number you monitor supports. Also add you desired resolution to the different subsections. Start with your highest resolution and go down.
Code:
DefaultDepth 24
Subsection "Display"
# VGA mode: better left untouched
Depth 4
Modes "640x480"
ViewPort 0 0
EndSubsection
Subsection "Display"
Depth 8
Modes "1680x1050" "1280x1024""800x600"
ViewPort 0 0
EndSubsection
Subsection "Display"
Depth 15
Modes "1680x1050" "1280x1024""800x600"
ViewPort 0 0
EndSubsection
Subsection "Display"
Depth 16
Modes "1680x1050" "1280x1024""800x600"
ViewPort 0 0
EndSubsection
Subsection "Display"
Depth 24
Modes "1680x1050" "1280x1024""800x600"
ViewPort 0 0
EndSubsection
Hopefully you can reboot and bask in the glorious beauty of have a normal wallpaper like me at this point. Just copy back your backup files if anything goes wrong.