Advertisement
Guest User

xorg.conf

a guest
Dec 28th, 2011
204
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.07 KB | None | 0 0
  1. Section "ServerLayout"
  2. Identifier "X.org Configured"
  3. Screen 0 "Screen0" 0 0
  4. InputDevice "Mouse0" "CorePointer"
  5. InputDevice "Keyboard0" "CoreKeyboard"
  6. Option "AllowEmptyInput" "off"
  7. Option "AIGLX" "true"
  8. EndSection
  9.  
  10. Section "ServerFlags"
  11. Option "AutoAddDevices" "false"
  12. EndSection
  13.  
  14. Section "Files"
  15. ModulePath "/usr/local/lib/xorg/modules"
  16. FontPath "/usr/local/lib/X11/fonts/misc/"
  17. FontPath "/usr/local/lib/X11/fonts/TTF/"
  18. FontPath "/usr/local/lib/X11/fonts/OTF"
  19. FontPath "/usr/local/lib/X11/fonts/Type1/"
  20. FontPath "/usr/local/lib/X11/fonts/100dpi/"
  21. FontPath "/usr/local/lib/X11/fonts/75dpi/"
  22. FontPath "/usr/local/lib/X11/fonts/dejavu/"
  23. FontPath "/usr/local/lib/X11/fonts/Droid/"
  24. FontPath "/usr/local/lib/X11/fonts/terminus-font/"
  25. FontPath "/usr/local/lib/X11/fonts/URW/"
  26. FontPath "/usr/local/lib/X11/fonts/webfonts/"
  27. EndSection
  28.  
  29. Section "Module"
  30. Load "dbe"
  31. Load "dri"
  32. Load "dri2"
  33. Load "extmod"
  34. Load "glx"
  35. Load "record"
  36. Load "freetype"
  37. EndSection
  38.  
  39. Section "InputDevice"
  40. Identifier "Keyboard0"
  41. Driver "kbd"
  42. EndSection
  43.  
  44. Section "InputDevice"
  45. Identifier "Mouse0"
  46. Driver "mouse"
  47. Option "Protocol" "auto"
  48. Option "Device" "/dev/sysmouse"
  49. Option "ZAxisMapping" "4 5 6 7"
  50. EndSection
  51.  
  52. Section "Monitor"
  53. Identifier "Monitor0"
  54. VendorName "Monitor Vendor"
  55. ModelName "Monitor Model"
  56. EndSection
  57.  
  58. Section "Device"
  59. ### Available Driver options are:-
  60. ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
  61. ### <string>: "String", <freq>: "<f> Hz/kHz/MHz"
  62. ### [arg]: arg optional
  63. #Option "NoAccel" # [<bool>]
  64. #Option "SWcursor" # [<bool>]
  65. #Option "ColorKey" # <i>
  66. #Option "CacheLines" # <i>
  67. #Option "Dac6Bit" # [<bool>]
  68. #Option "DRI" # [<bool>]
  69. #Option "NoDDC" # [<bool>]
  70. #Option "ShowCache" # [<bool>]
  71. #Option "XvMCSurfaces" # <i>
  72. #Option "PageFlip" # [<bool>]
  73. Identifier "Card0"
  74. Driver "intel"
  75. VendorName "Intel Corporation"
  76. BoardName "N10 Family Integrated Graphics Controller"
  77. BusID "PCI:0:2:0"
  78. Option "DRI" "true"
  79. EndSection
  80.  
  81. Section "Screen"
  82. Identifier "Screen0"
  83. Device "Card0"
  84. Monitor "Monitor0"
  85. DefaultDepth 24
  86. SubSection "Display"
  87. Viewport 0 0
  88. Depth 1
  89. EndSubSection
  90. SubSection "Display"
  91. Viewport 0 0
  92. Depth 4
  93. EndSubSection
  94. SubSection "Display"
  95. Viewport 0 0
  96. Depth 8
  97. EndSubSection
  98. SubSection "Display"
  99. Viewport 0 0
  100. Depth 15
  101. EndSubSection
  102. SubSection "Display"
  103. Viewport 0 0
  104. Depth 16
  105. EndSubSection
  106. SubSection "Display"
  107. Viewport 0 0
  108. Depth 24
  109. Modes "1024x600"
  110. EndSubSection
  111. EndSection
  112.  
  113. Section "DRI"
  114. Mode 0660
  115. EnSection
  116.  
  117. Section "Extensions"
  118. Option "Composite" "enable"
  119. EndSection
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement