Nope, still not changing the resolution to 1280x1024 during bootup. Here are the last 3 lines of rc.local:
/usr/bin/xrandr --newmode "1280x1024_60.00" 109.00 1280 1368 1496 1712 1024 1027 1034 1063 -hsync +vsync &
/usr/bin/xrandr --addmode VGA1 1280x1024_60.00 &
/usr/bin/xrandr --output VGA1 --mode 1280x1024_60.00 & (also tried it without this last "&" - no effect)
Still, after bootup completes I can open Terminal, paste these three lines from a text file on the desktop and hit enter to get it to change to 1280x1024.
xrandr --newmode "1280x1024_60.00" 109.00 1280 1368 1496 1712 1024 1027 1034 1063 -hsync +vsync
xrandr --addmode VGA1 1280x1024_60.00
xrandr --output VGA1 --mode 1280x1024_60.00
When everybody here runs out of friendly suggestions, I will go bug the XFCE forum! Thanks again!
To make life a little easier I would make one script file
perhaps called "monitor1280" with the text editor.
Contents of file: monitor1280
# to change monitor mode to 1280x1024
xrandr --newmode "1280x1024_60.00" 109.00 1280 1368 1496 1712 1024 1027 1034 1063 -hsync +vsync
xrandr --addmode VGA1 1280x1024_60.00
xrandr --output VGA1 --mode 1280x1024_60.00
In root, put the file monitor1280 into usr/bin with Thunar file manager.
In root, right click to properties,click permissions, and check "make the file executable".
You should be able to run the small file in the terminal just like
the three xrandr commands, but with just one line and command.
Put monitor1280 into the terminal and hit enter same as with xrandr.
Sometimes commands have to be run in a terminal and this just
might be the case here. If it doesn't run post back and we'll check
the syntax and so forth.
Have a good one.