Advertisement
Guest User

xorg.conf

a guest
Jul 21st, 2010
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.52 KB | None | 0 0
  1. Section "ServerLayout"
  2. Identifier "X.org Configured"
  3. Screen 0 "Screen0" 0 0
  4. InputDevice "SynapticsTouchpad" "SendCoreEvents"
  5. InputDevice "Keyboard0" "CoreKeyboard"
  6. EndSection
  7.  
  8. Section "Files"
  9. ModulePath "/usr/lib/xorg/modules"
  10. FontPath "/usr/share/fonts/misc/"
  11. FontPath "/usr/share/fonts/TTF/"
  12. FontPath "/usr/share/fonts/OTF/"
  13. FontPath "/usr/share/fonts/Type1/"
  14. FontPath "/usr/share/fonts/100dpi/"
  15. FontPath "/usr/share/fonts/75dpi/"
  16. EndSection
  17.  
  18. Section "Module"
  19. Load "dri2"
  20. Load "dbe"
  21. Load "extmod"
  22. Load "dri"
  23. Load "record"
  24. Load "glx"
  25. Load "synaptics"
  26. EndSection
  27.  
  28. Section "InputDevice"
  29. Identifier "Keyboard0"
  30. Driver "kbd"
  31. endSection
  32.  
  33. Section "InputDevice"
  34. Identifier "SynapticsTouchpad"
  35. Driver "synaptics"
  36. Option "Protocol" "auto-dev"
  37. Option "Device" "/dev/input/mice"
  38. Option "VertTwoFingerScroll" "true"
  39. Option "HorizTwoFingerScroll" "true"
  40. EndSection
  41.  
  42. Section "Monitor"
  43. Identifier "Monitor0"
  44. VendorName "Monitor Vendor"
  45. ModelName "Monitor Model"
  46. EndSection
  47.  
  48. Section "Device"
  49. ### Available Driver options are:-
  50. ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
  51. ### <string>: "String", <freq>: "<f> Hz/kHz/MHz"
  52. ### [arg]: arg optional
  53. #Option "NoAccel" # [<bool>]
  54. #Option "SWcursor" # [<bool>]
  55. #Option "ColorKey" # <i>
  56. #Option "CacheLines" # <i>
  57. #Option "Dac6Bit" # [<bool>]
  58. #Option "DRI" # [<bool>]
  59. #Option "NoDDC" # [<bool>]
  60. #Option "ShowCache" # [<bool>]
  61. #Option "XvMCSurfaces" # <i>
  62. #Option "PageFlip" # [<bool>]
  63. Identifier "Card0"
  64. Driver "intel"
  65. VendorName "Intel Corporation"
  66. BoardName "Core Processor Integrated Graphics Controller"
  67. BusID "PCI:0:2:0"
  68. EndSection
  69.  
  70. Section "Screen"
  71. Identifier "Screen0"
  72. Device "Card0"
  73. Monitor "Monitor0"
  74. SubSection "Display"
  75. Viewport 0 0
  76. Depth 1
  77. EndSubSection
  78. SubSection "Display"
  79. Viewport 0 0
  80. Depth 4
  81. EndSubSection
  82. SubSection "Display"
  83. Viewport 0 0
  84. Depth 8
  85. EndSubSection
  86. SubSection "Display"
  87. Viewport 0 0
  88. Depth 15
  89. EndSubSection
  90. SubSection "Display"
  91. Viewport 0 0
  92. Depth 16
  93. EndSubSection
  94. SubSection "Display"
  95. Viewport 0 0
  96. Depth 24
  97. EndSubSection
  98. EndSection
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement