Istvan Gabor wrote:
How can I set these resolutions: 1024x768 an 640x480 so that ctrl-alt-+/- would result in the change.
Two methods that I know of: 1. Run xorgconfig, a cli program that can be used instead of SaX. It involves answering a number of questions. 2. Edit /etc/X11/xorg.conf directly. Look for 'Section "Screen"'. E.g., if the DefaultDepth is 16 then under 'Subsection "Display"' with Depth 16 insert the resolutions ('Modes'). Section "Screen" Identifier "Screen 1" Device "ATI Radeon 9500" Monitor "HansolT150" DefaultDepth 16 Subsection "Display" Depth 8 Modes "800x600" ViewPort 0 0 EndSubsection Subsection "Display" Depth 16 Modes "800x600" "1024x768" "640x480" ViewPort 0 0 EndSubsection Subsection "Display" Depth 24 Modes "800x600" ViewPort 0 0 EndSubsection EndSection