Advertisement
Guest User

Untitled

a guest
Feb 4th, 2012
206
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 3.06 KB | None | 0 0
  1. # cat xorg.conf
  2. Section "ServerLayout"
  3.         Identifier     "X.org Configured"
  4.         Screen      0  "Screen0" 0 0
  5.         Screen      1  "Screen1" RightOf "Screen0"
  6.         InputDevice    "Mouse0" "CorePointer"
  7.         InputDevice    "Keyboard0" "CoreKeyboard"
  8. EndSection
  9.  
  10. Section "Files"
  11.         ModulePath   "/usr/lib64/xorg/modules"
  12.         FontPath     "/usr/share/fonts/misc/"
  13.         FontPath     "/usr/share/fonts/TTF/"
  14.         FontPath     "/usr/share/fonts/OTF/"
  15.         FontPath     "/usr/share/fonts/Type1/"
  16.         FontPath     "/usr/share/fonts/100dpi/"
  17.         FontPath     "/usr/share/fonts/75dpi/"
  18. EndSection
  19.  
  20. Section "Module"
  21.         Load  "glx"
  22.         Load  "dri"
  23.         Load  "extmod"
  24.         Load  "record"
  25.         Load  "dri2"
  26.         Load  "dbe"
  27. EndSection
  28.  
  29. Section "InputDevice"
  30.         Identifier  "Keyboard0"
  31.         Driver      "kbd"
  32. EndSection
  33.  
  34. Section "InputDevice"
  35.         Identifier  "Mouse0"
  36.         Driver      "mouse"
  37.         Option      "Protocol" "auto"
  38.         Option      "Device" "/dev/input/mice"
  39.         Option      "ZAxisMapping" "4 5 6 7"
  40. EndSection
  41.  
  42. Section "Monitor"
  43.         Identifier   "Monitor0"
  44.         VendorName   "Monitor Vendor"
  45.         ModelName    "Monitor Model"
  46. EndSection
  47.  
  48. Section "Monitor"
  49.         Identifier   "Monitor1"
  50.         VendorName   "Monitor Vendor"
  51.         ModelName    "Monitor Model"
  52. EndSection
  53.  
  54. Section "Device"
  55.         Identifier  "Nvidia Card"
  56.         Driver      "nvidia"
  57. EndSection
  58.  
  59. Section "Screen"
  60.         Identifier "Screen0"
  61.         Device     "Card0"
  62.         Monitor    "Monitor0"
  63.         SubSection "Display"
  64.                 Viewport   0 0
  65.                 Depth     1
  66.         EndSubSection
  67.         SubSection "Display"
  68.                 Viewport   0 0
  69.                 Depth     4
  70.         EndSubSection
  71.         SubSection "Display"
  72.                 Viewport   0 0
  73.                 Depth     8
  74.         EndSubSection
  75.         SubSection "Display"
  76.                 Viewport   0 0
  77.                 Depth     15
  78.         EndSubSection
  79.         SubSection "Display"
  80.                 Viewport   0 0
  81.                 Depth     16
  82.         EndSubSection
  83.         SubSection "Display"
  84.                 Viewport   0 0
  85.                 Depth     24
  86.         EndSubSection
  87. EndSection
  88.  
  89. Section "Screen"
  90.         Identifier "Screen1"
  91.         Device     "Card1"
  92.         Monitor    "Monitor1"
  93.         SubSection "Display"
  94.                 Viewport   0 0
  95.                 Depth     1
  96.         EndSubSection
  97.         SubSection "Display"
  98.                 Viewport   0 0
  99.                 Depth     4
  100.         EndSubSection
  101.         SubSection "Display"
  102.                 Viewport   0 0
  103.                 Depth     8
  104.         EndSubSection
  105.         SubSection "Display"
  106.                 Viewport   0 0
  107.                 Depth     15
  108.         EndSubSection
  109.         SubSection "Display"
  110.                 Viewport   0 0
  111.                 Depth     16
  112.         EndSubSection
  113.         SubSection "Display"
  114.                 Viewport   0 0
  115.                 Depth     24
  116.         EndSubSection
  117. EndSection
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement