Need help for custom resolution setting with nVidia graphic hardware.

Whenever I login or restart the computer, my resolution gets reset. I think it may have to do with my setup being connected to a 18.5" HDTV. Is there a way to set custom resolutions in the OS, so that Nvidia and OpenSUSE can recognize them?

03:00.0 VGA compatible controller [0300]: nVidia Corporation ION LE VGA [10de:087e] (rev b1)
Subsystem: Acer Incorporated [ALI] Device [1025:0222]
Kernel driver in use: nvidia

SUSE Paste

For a VGA monitor connection, here is my suggestion:

Open a terminal and type"

xrandr

to show your display device name(s) and available display modes.

When I execute this command on my computer here is what I get:

james@linux-6m6e:~> xrandr
xrandr: Failed to get size of gamma for output **default**
Screen 0: minimum 320 x 175, current 1920 x 1200, maximum 1920 x 1200
default connected 1920x1200+0+0 0mm x 0mm
   **1920x1200**      50.0* 
   1600x1200      51.0  
   1400x1050      52.0     53.0  
   1280x1024      54.0     55.0     56.0  
   1280x960       57.0     58.0  
   1152x864       59.0  
   1024x768       60.0     61.0     62.0     63.0     64.0     65.0  
   960x720        66.0     67.0  
   928x696        68.0     69.0  
   896x672        70.0     71.0  
   832x624        72.0  
   800x600        73.0     74.0     75.0     76.0     77.0     78.0     79.0     80.0     81.0     82.0  
   720x400        83.0  
   700x525        84.0     85.0  
   640x512        86.0     87.0     88.0  
   640x480        89.0     90.0     91.0     92.0     93.0     94.0     95.0  
   640x400        96.0  
   640x350        97.0  
   576x432        98.0  
   512x384        99.0    100.0    101.0    102.0    103.0  
   416x312       104.0  
   400x300       105.0    106.0    107.0    108.0    109.0  
   360x200       110.0  
   320x240       111.0    112.0    113.0    114.0  
   320x200       115.0  
   320x175       116.0

Create/edit a minimal xorg.conf with an editor like this for KDE:


kdesu kwrite /etc/X11/xorg.conf

For Gnome:


gnomesu gedit /etc/X11/xorg.conf

Create/adjust the monitor section like this for example:

Section "Monitor"
   Identifier "**default**"
   Option "Preferred Mode" "**1920x1200**"
EndSection

Notice that I placed the name default and 1920x1200 in bold. However, your values will not or need not be in bold. The bold type is just used to show what I am using where in my example.

Thank You,