Advertisement
Guest User

Untitled

a guest
Feb 4th, 2012
172
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 4.17 KB | None | 0 0
  1. Section "ServerLayout"
  2.         Identifier     "X.org Configured"
  3.         Screen      0  "Screen0" 0 0
  4.         Screen      1  "Screen1" RightOf "Screen0"
  5.         InputDevice    "Mouse0" "CorePointer"
  6.         InputDevice    "Keyboard0" "CoreKeyboard"
  7. EndSection
  8.  
  9. Section "Files"
  10.         ModulePath   "/usr/lib64/xorg/modules"
  11.         FontPath     "/usr/share/fonts/misc/"
  12.         FontPath     "/usr/share/fonts/TTF/"
  13.         FontPath     "/usr/share/fonts/OTF/"
  14.         FontPath     "/usr/share/fonts/Type1/"
  15.         FontPath     "/usr/share/fonts/100dpi/"
  16.         FontPath     "/usr/share/fonts/75dpi/"
  17. EndSection
  18.  
  19. Section "Module"
  20.         Load  "glx"
  21.         Load  "dri"
  22.         Load  "extmod"
  23.         Load  "record"
  24.         Load  "dri2"
  25.         Load  "dbe"
  26. EndSection
  27.  
  28. Section "InputDevice"
  29.         Identifier  "Keyboard0"
  30.         Driver      "kbd"
  31. EndSection
  32.  
  33. Section "InputDevice"
  34.         Identifier  "Mouse0"
  35.         Driver      "mouse"
  36.         Option      "Protocol" "auto"
  37.         Option      "Device" "/dev/input/mice"
  38.         Option      "ZAxisMapping" "4 5 6 7"
  39. EndSection
  40.  
  41. Section "Monitor"
  42.         Identifier   "Monitor0"
  43.         VendorName   "Monitor Vendor"
  44.         ModelName    "Monitor Model"
  45. EndSection
  46.  
  47. Section "Monitor"
  48.         Identifier   "Monitor1"
  49.         VendorName   "Monitor Vendor"
  50.         ModelName    "Monitor Model"
  51. EndSection
  52.  
  53. Section "Device"
  54.         Identifier  "Card0"
  55.         Driver      "nvidia"
  56.         BusID       "PCI:3:0:0"
  57. EndSection
  58.  
  59. Section "Device"
  60.         ### Available Driver options are:-
  61.         ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
  62.         ### <string>: "String", <freq>: "<f> Hz/kHz/MHz",
  63.         ### <percent>: "<f>%"
  64.         ### [arg]: arg optional
  65.         #Option     "SWcursor"                  # [<bool>]
  66.         #Option     "HWcursor"                  # [<bool>]
  67.         #Option     "NoAccel"                   # [<bool>]
  68.         #Option     "ShadowFB"                  # [<bool>]
  69.         #Option     "UseFBDev"                  # [<bool>]
  70.         #Option     "Rotate"                    # [<str>]
  71.         #Option     "VideoKey"                  # <i>
  72.         #Option     "FlatPanel"                 # [<bool>]
  73.         #Option     "FPDither"                  # [<bool>]
  74.         #Option     "CrtcNumber"                # <i>
  75.         #Option     "FPScale"                   # [<bool>]
  76.         #Option     "FPTweak"                   # <i>
  77.         #Option     "DualHead"                  # [<bool>]
  78.         Identifier  "Card1"
  79.         Driver      "nv"
  80.         BusID       "PCI:3:0:0"
  81. EndSection
  82.  
  83. Section "Screen"
  84.         Identifier "Screen0"
  85.         Device     "Card0"
  86.         Monitor    "Monitor0"
  87.         SubSection "Display"
  88.                 Viewport   0 0
  89.                 Depth     1
  90.         EndSubSection
  91.         SubSection "Display"
  92.                 Viewport   0 0
  93.                 Depth     4
  94.         EndSubSection
  95.         SubSection "Display"
  96.                 Viewport   0 0
  97.                 Depth     8
  98.         EndSubSection
  99.         SubSection "Display"
  100.                 Viewport   0 0
  101.                 Depth     15
  102.         EndSubSection
  103.         SubSection "Display"
  104.                 Viewport   0 0
  105.                 Depth     16
  106.         EndSubSection
  107.         SubSection "Display"
  108.                 Viewport   0 0
  109.                 Depth     24
  110.         EndSubSection
  111. EndSection
  112.  
  113. Section "Screen"
  114.         Identifier "Screen1"
  115.         Device     "Card1"
  116.         Monitor    "Monitor1"
  117.         SubSection "Display"
  118.                 Viewport   0 0
  119.                 Depth     1
  120.         EndSubSection
  121.         SubSection "Display"
  122.                 Viewport   0 0
  123.                 Depth     4
  124.         EndSubSection
  125.         SubSection "Display"
  126.                 Viewport   0 0
  127.                 Depth     8
  128.         EndSubSection
  129.         SubSection "Display"
  130.                 Viewport   0 0
  131.                 Depth     15
  132.         EndSubSection
  133.         SubSection "Display"
  134.                 Viewport   0 0
  135.                 Depth     16
  136.         EndSubSection
  137.         SubSection "Display"
  138.                 Viewport   0 0
  139.                 Depth     24
  140.         EndSubSection
  141. EndSection
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement