Advertisement
Guest User

xorg2

a guest
Oct 19th, 2010
214
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.00 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. 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 "record"
  20. Load "dri2"
  21. Load "extmod"
  22. Load "dbe"
  23. Load "glx"
  24. Load "dri"
  25. EndSection
  26.  
  27. Section "InputDevice"
  28. Identifier "Keyboard0"
  29. Driver "kbd"
  30. EndSection
  31.  
  32. Section "InputDevice"
  33. Identifier "Mouse0"
  34. Driver "mouse"
  35. Option "Protocol" "auto"
  36. Option "Device" "/dev/input/mice"
  37. Option "ZAxisMapping" "4 5 6 7"
  38. EndSection
  39.  
  40. Section "Monitor"
  41. Identifier "Monitor0"
  42. VendorName "Monitor Vendor"
  43. ModelName "Monitor Model"
  44. EndSection
  45.  
  46. Section "Device"
  47. ### Available Driver options are:-
  48. ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
  49. ### <string>: "String", <freq>: "<f> Hz/kHz/MHz",
  50. ### <percent>: "<f>%"
  51. ### [arg]: arg optional
  52. Option "ShadowFB" "true"
  53. #Option "DefaultRefresh" # [<bool>]
  54. #Option "ModeSetClearScreen" # [<bool>]
  55. Identifier "Card0"
  56. Driver "psb"
  57. BusID "PCI:0:2:0"
  58. EndSection
  59.  
  60. Section "Screen"
  61. Identifier "Screen0"
  62. Device "Card0"
  63. Monitor "Monitor0"
  64. SubSection "Display"
  65. Viewport 0 0
  66. Depth 1
  67. EndSubSection
  68. SubSection "Display"
  69. Viewport 0 0
  70. Depth 4
  71. EndSubSection
  72. SubSection "Display"
  73. Viewport 0 0
  74. Depth 8
  75. EndSubSection
  76. SubSection "Display"
  77. Viewport 0 0
  78. Depth 15
  79. EndSubSection
  80. SubSection "Display"
  81. Viewport 0 0
  82. Depth 16
  83. EndSubSection
  84. SubSection "Display"
  85. Viewport 0 0
  86. Depth 24
  87. EndSubSection
  88. EndSection
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement