Advertisement
Guest User

/etc/X11/xorg.conf

a guest
Oct 8th, 2011
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.79 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/X11/modules"
  10. FontPath "/usr/share/fonts/X11/misc/"
  11. FontPath "/usr/share/fonts/X11/TTF/"
  12. FontPath "/usr/share/fonts/X11/OTF"
  13. FontPath "/usr/share/fonts/X11/Type1/"
  14. FontPath "/usr/share/fonts/X11/100dpi/"
  15. FontPath "/usr/share/fonts/X11/75dpi/"
  16. EndSection
  17.  
  18. Section "Module"
  19. Load "dri"
  20. Load "extmod"
  21. Load "dbe"
  22. Load "glx"
  23. Load "freetype"
  24. EndSection
  25.  
  26. Section "InputDevice"
  27. Identifier "Keyboard0"
  28. Driver "kbd"
  29. Option "XkbLayout" "us-acentos"
  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. ### [arg]: arg optional
  51. #Option "ShadowFB" # [<bool>]
  52. #Option "DefaultRefresh" # [<bool>]
  53. #Option "ModeSetClearScreen" # [<bool>]
  54. Identifier "Card0"
  55. Driver "vesa"
  56. VendorName "Unknown Vendor"
  57. BoardName "Unknown Board"
  58. BusID "PCI:0:2:0"
  59. EndSection
  60.  
  61. Section "Screen"
  62. Identifier "Screen0"
  63. Device "Card0"
  64. Monitor "Monitor0"
  65. SubSection "Display"
  66. Viewport 0 0
  67. Depth 1
  68. EndSubSection
  69. SubSection "Display"
  70. Viewport 0 0
  71. Depth 4
  72. EndSubSection
  73. SubSection "Display"
  74. Viewport 0 0
  75. Depth 8
  76. EndSubSection
  77. SubSection "Display"
  78. Viewport 0 0
  79. Depth 15
  80. EndSubSection
  81. SubSection "Display"
  82. Viewport 0 0
  83. Depth 16
  84. EndSubSection
  85. SubSection "Display"
  86. Viewport 0 0
  87. Depth 24
  88. EndSubSection
  89. EndSection
  90.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement