Advertisement
Guest User

My Xorg.conf

a guest
May 24th, 2010
275
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. Section "ServerLayout"
  2.     Identifier     "X.org Configured"
  3.     Screen      0  "Screen0" 0 0
  4.     InputDevice    "Mouse0" "CorePointer"
  5.     InputDevice    "Keyboard0" "CoreKeyboard"
  6. EndSection
  7.  
  8. Section "Files"
  9.     ModulePath   "/usr/lib/xorg/modules"
  10.     FontPath     "/usr/share/fonts/X11/misc"
  11.     FontPath     "/usr/share/fonts/X11/cyrillic"
  12.     FontPath     "/usr/share/fonts/X11/100dpi/:unscaled"
  13.     FontPath     "/usr/share/fonts/X11/75dpi/:unscaled"
  14.     FontPath     "/usr/share/fonts/X11/Type1"
  15.     FontPath     "/usr/share/fonts/X11/100dpi"
  16.     FontPath     "/usr/share/fonts/X11/75dpi"
  17.     FontPath     "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType"
  18.     FontPath     "built-ins"
  19. EndSection
  20.  
  21. Section "Module"
  22.     Load  "record"
  23.     Load  "glx"
  24.     Load  "dri"
  25.     Load  "dbe"
  26.     Load  "extmod"
  27.     Load  "dri2"
  28. EndSection
  29.  
  30. Section "InputDevice"
  31.     Identifier  "Keyboard0"
  32.     Driver      "kbd"
  33. EndSection
  34.  
  35. Section "InputDevice"
  36.     Identifier  "Mouse0"
  37.     Driver      "mouse"
  38.     Option      "Protocol" "auto"
  39.     Option      "Device" "/dev/input/mice"
  40.     Option      "ZAxisMapping" "4 5 6 7"
  41. EndSection
  42.  
  43. Section "Monitor"
  44.     Identifier   "iiyamaProLite"
  45.     VendorName   "IIyama"
  46.     ModelName    "ProLite E2208HDS"
  47.         # 1920x1080 @ 60.00 Hz (GTF) hsync: 67.08 kHz; pclk: 172.80 MHz
  48.         # Modeline "1920x1080_60.00"  172.80  1920 2040 2248 2576  1080 1081 1084 1118  -HSync +Vsync
  49.         # Option "PreferredMode" "1920x1080_60.00"
  50.         Modeline "1920x1080" 148.50  1920 2008 2052 2200  1080 1084 1089 1125 +hsync +vsync
  51.         Option "PreferredMode" "1920x1080"
  52. EndSection
  53.  
  54. Section "Monitor"
  55.     Identifier   "Medion"
  56.         VendorName   "Medion"
  57.         ModelName    "MD 322117 PQ"
  58.         Option "RightOf" "iiyamaProLite"
  59.          # 1280x1024 @ 60.00 Hz (GTF) hsync: 63.60 kHz; pclk: 108.88 MHz
  60.         Modeline "1280x1024_60.00"  108.88  1280 1360 1496 1712  1024 1025 1028 1060  -HSync +Vsync
  61.         Option "PreferredMode" "1280x1024_60.00"
  62. EndSection
  63.  
  64. Section "Device"
  65.         ### Available Driver options are:-
  66.         ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
  67.         ### <string>: "String", <freq>: "<f> Hz/kHz/MHz"
  68.         ### [arg]: arg optional
  69.         #Option     "SWcursor"              # [<bool>]
  70.         #Option     "HWcursor"              # [<bool>]
  71.         #Option     "NoAccel"               # [<bool>]
  72.         #Option     "ShadowFB"              # [<bool>]
  73.         #Option     "UseFBDev"              # [<bool>]
  74.         #Option     "Rotate"                # [<str>]
  75.         #Option     "VideoKey"              # <i>
  76.         #Option     "FlatPanel"             # [<bool>]
  77.         #Option     "FPDither"              # [<bool>]
  78.         #Option     "CrtcNumber"            # <i>
  79.         #Option     "FPScale"               # [<bool>]
  80.         #Option     "FPTweak"               # <i>
  81.         #Option     "DualHead"              # [<bool>]
  82.     Identifier  "Card0"
  83.     Driver      "nv"
  84.     VendorName  "nVidia Corporation"
  85.     BoardName   "GT218 [GeForce 210]"
  86.     BusID       "PCI:1:0:0"
  87.     Option      "Monitor-DVI0" "iiyamaProLite"
  88.     Option      "Monitor-VGA0" "Medion"
  89. EndSection
  90.  
  91. Section "Screen"
  92.     Identifier "Screen0"
  93.     Device     "Card0"
  94.         DefaultDepth 24
  95.     SubSection "Display"
  96.         Depth 24
  97.         Virtual 3200 1080
  98.     EndSubSection
  99. EndSection
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement