Advertisement
Luciernaga

xorg.conf

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