# xorg.conf (X.Org X Window System server configuration file) # # NB this is kev's hand edited version making use of xorg.conf manual and nvidia linux driver manual # http://www.x.org/archive/X11R6.8.0/doc/xorg.conf.5.html # http://http.download.nvidia.com/XFree86/Linux-x86/1.0-8178/README/chapter-03-section-02.html # keyboard and mouse sections were pasted in from an xorg found on the ubuntu wiki, # hopefully they're applicable here # # If you have edited this file but would like it to be automatically updated # again, run the following command: # sudo dpkg-reconfigure -phigh xserver-xorg Section "Module" Load "glx" Endsection Section "InputDevice" Identifier "Keyboard0" Driver "kbd" Option "XkbRules" "xorg" Option "XkbModel" "pc105" Option "XkbLayout" "gb" EndSection Section "InputDevice" Identifier "Mouse0" Driver "mouse" Option "CorePointer" EndSection Section "Device" Identifier "NVidia0" Driver "nvidia" Screen 0 # probably want to make this true at some point, but jsut for testing, defaut is false anyway Option "NoLogo" "false" # remember change this if moving to a two screen set up, default is false anyway Option "Xinerama" "false" # set false to use freqs set in xorg.conf, default is true Option "UseEdidFreqs" "false" # true could damage monitor if incorrect info specified in xorg.conf, # but may be necessary if driver misidentifies edid info from monitor # default is false Option "IgnoreEDID" "false" # nvidia's proprietary alternative to xinerama for multiple monitors, default is false Option "TwinView" "false" EndSection Section "Monitor" Identifier "Monitor0" VendorName "Acer" ModelName "P193w" HorizSync 30-81 VertRefresh 55-76 DisplaySize 428 278 # modeline calculated by http://www.arachnoid.com/modelines/ Modeline "1440x900" 106.47 1440 1520 1672 1904 900 901 904 932 -HSync +Vsync Modeline "1280x800" 83.46 1280 1344 1480 1680 800 801 804 828 -HSync +Vsync Modeline "960x600" 45.98 960 1000 1096 1232 600 601 604 622 -HSync +Vsync # modeline calculated by http://xtiming.sourceforge.net/cgi-bin/xtiming.pl for xfree86 # Modeline "1440x900@60" 108.84 1440 1472 1880 1912 900 918 927 946 EndSection Section "Screen" Identifier "Screen0" Device "NVidia0" Monitor "Monitor0" DefaultDepth 24 SubSection "Display" Depth 24 Modes "1440x900" "1280x800" "960x600" EndSubSection EndSection Section "ServerLayout" Identifier "Default Server Layout" Screen "Screen0" InputDevice "Keyboard0" InputDevice "Mouse0" Endsection