Advertisement
Guest User

xorg.conf

a guest
Jul 23rd, 2011
163
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.32 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 "dbe"
  20. Load "dri2"
  21. Load "record"
  22. Load "extmod"
  23. Load "dri"
  24. Load "glx"
  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 "SWcursor" # [<bool>]
  53. #Option "HWcursor" # [<bool>]
  54. #Option "NoAccel" # [<bool>]
  55. #Option "ShadowFB" # [<bool>]
  56. #Option "VideoKey" # <i>
  57. #Option "WrappedFB" # [<bool>]
  58. #Option "GLXVBlank" # [<bool>]
  59. #Option "ZaphodHeads" # <str>
  60. #Option "PageFlip" # [<bool>]
  61. Identifier "Card0"
  62. Driver "nouveau"
  63. BusID "PCI:1:0:0"
  64. EndSection
  65.  
  66. Section "Screen"
  67. Identifier "Screen0"
  68. Device "Card0"
  69. Monitor "Monitor0"
  70. SubSection "Display"
  71. Viewport 0 0
  72. Depth 1
  73. EndSubSection
  74. SubSection "Display"
  75. Viewport 0 0
  76. Depth 4
  77. EndSubSection
  78. SubSection "Display"
  79. Viewport 0 0
  80. Depth 8
  81. EndSubSection
  82. SubSection "Display"
  83. Viewport 0 0
  84. Depth 15
  85. EndSubSection
  86. SubSection "Display"
  87. Viewport 0 0
  88. Depth 16
  89. EndSubSection
  90. SubSection "Display"
  91. Viewport 0 0
  92. Depth 24
  93. EndSubSection
  94. EndSection
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement