Advertisement
kijato

Xorg.conf - GeForce 6200 Multihead

Jan 9th, 2020
3,143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. Section "Files"
  2.     ModulePath   "/usr/lib/xorg/modules"
  3.     FontPath     "/usr/share/fonts/X11/misc"
  4.     #FontPath     "/usr/share/fonts/X11/cyrillic"
  5.     FontPath     "/usr/share/fonts/X11/100dpi/:unscaled"
  6.     FontPath     "/usr/share/fonts/X11/75dpi/:unscaled"
  7.     FontPath     "/usr/share/fonts/X11/Type1"
  8.     FontPath     "/usr/share/fonts/X11/100dpi"
  9.     FontPath     "/usr/share/fonts/X11/75dpi"
  10.     FontPath     "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType"
  11.     FontPath     "built-ins"
  12. EndSection
  13.  
  14. Section "Module"
  15.     Load  "extmod"
  16.     Load  "record"
  17.     Load  "dri2"
  18.     Load  "dri"
  19.     Load  "dbe"
  20.     Load  "glx"
  21. EndSection
  22.  
  23. Section "InputDevice"
  24.     Identifier  "Keyboard0"
  25.     Driver      "kbd"
  26. EndSection
  27.  
  28. Section "InputDevice"
  29.     Identifier  "Mouse0"
  30.     Driver      "mouse"
  31.     Option      "Protocol" "auto"
  32.     Option      "Device" "/dev/input/mice"
  33.     Option      "ZAxisMapping" "4 5 6 7"
  34. EndSection
  35.  
  36. Section "Monitor"
  37.     Identifier  "Monitor0"
  38.     VendorName  "LG"
  39.     ModelName   "F920P"
  40.     Option      "DPMS"
  41.     Option      "PreferredMode" "1600x1200_85"
  42.     # LG F920P; GSM4A88; 30.0-111.0; 50.0-160.0
  43. EndSection
  44.  
  45. Section "Monitor"
  46.     Identifier  "Monitor1"
  47.     VendorName  "LG"
  48.     ModelName   "F920P"
  49.     Option      "DPMS"
  50.     Option      "PreferredMode" "1600x1200_85"
  51.     # LG F920P; GSM4A88; 30.0-111.0; 50.0-160.0
  52.     Option      "RightOf" "Monitor0"
  53. EndSection
  54.  
  55. Section "Device"
  56.         ### Available Driver options are:-
  57.         ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
  58.         ### <string>: "String", <freq>: "<f> Hz/kHz/MHz"
  59.         ### [arg]: arg optional
  60.         #Option     "SWcursor"              # [<bool>]
  61.         #Option     "HWcursor"              # [<bool>]
  62.         #Option     "NoAccel"               # [<bool>]
  63.         #Option     "ShadowFB"              # [<bool>]
  64.         #Option     "VideoKey"              # <i>
  65.     Identifier  "Card0"
  66.     Driver      "nouveau"
  67.     VendorName  "nVidia Corporation"
  68.     BoardName   "NV44 [GeForce 6200 TurboCache(TM)]"
  69.     BusID       "PCI:1:0:0"
  70.     Option      "Monitor-DVI-I-1" "Monitor0"
  71.     Option      "Monitor-DVI-I-2" "Monitor1"
  72. EndSection
  73.  
  74. Section "Screen"
  75.     Identifier "Screen0"
  76.     Device     "Card0"
  77.     #Monitor    "Monitor0"
  78.     DefaultDepth 24
  79.     SubSection "Display"
  80.         Depth   24
  81. #       Modes   "1600 1200" "1280 1024" "1024 768"
  82.         Modes   "1600 1200"
  83.         Virtual 3200 1200
  84.     EndSubSection
  85. EndSection
  86.  
  87. Section "ServerLayout"
  88.     Identifier     "Manual Configured"
  89.     Screen         0 "Screen0" 0 0
  90.     InputDevice    "Mouse0" "CorePointer"
  91.     InputDevice    "Keyboard0" "CoreKeyboard"
  92.     Option         "Xinerama" "on"
  93. EndSection
  94.  
  95. Section "ServerFlags"
  96.     AllowMouseOpenFail
  97.     Option  "DefaultServerLayout" "Manual Configured"
  98. EndSection
  99.  
  100. Section "DRI"
  101.     Mode    0666
  102.     Group   "video"
  103. EndSection
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement