Advertisement
Guest User

sis671 Xorg.conf

a guest
Oct 20th, 2011
146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.04 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/Type1/"
  12. FontPath "/usr/share/fonts/100dpi/"
  13. FontPath "/usr/share/fonts/75dpi/"
  14. EndSection
  15.  
  16. Section "Module"
  17. Load "record" # input handling ?
  18. Load "glx" # OpenGl
  19. Load "dbe" # Double buffer
  20. Load "extmod" # XVideo and other useful stuff
  21. Load "dri" # are these ones useful ?
  22. Load "dri2"
  23. EndSection
  24.  
  25. Section "InputDevice"
  26. Identifier "Keyboard0"
  27. Driver "kbd"
  28. EndSection
  29.  
  30. Section "InputDevice"
  31. Identifier "Mouse0"
  32. Driver "mouse"
  33. Option "Protocol" "auto"
  34. Option "Device" "/dev/input/mice"
  35. Option "ZAxisMapping" "4 5 6 7"
  36. EndSection
  37.  
  38. Section "Monitor"
  39. Identifier "Monitor0"
  40. VendorName "Monitor Vendor"
  41. ModelName "Monitor Model"
  42. EndSection
  43.  
  44. Section "Device"
  45. # I have sisctrl utility installed (useful for gamma
  46. # configuration)
  47. Option "EnableSiSCtrl" "yes"
  48. # this option is suggested by Ubuntu driver developer
  49. # fot 1366x768 resolution usage
  50. Option "UseTiming1366" "yes"
  51. # without this option Xorg prints junk message about
  52. # missing sis671_dri.so
  53. Option "DRI" "0"
  54. Identifier "Card0"
  55. Driver "sis"
  56. BusID "PCI:1:0:0"
  57. EndSection
  58.  
  59. Section "Screen"
  60. Identifier "Screen0"
  61. Device "Card0"
  62. Monitor "Monitor0"
  63. SubSection "Display"
  64. Modes "1366x768_60.00"
  65. EndSubSection
  66. SubSection "Display"
  67. Viewport 0 0
  68. Depth 1
  69. EndSubSection
  70. SubSection "Display"
  71. Viewport 0 0
  72. Depth 4
  73. EndSubSection
  74. SubSection "Display"
  75. Viewport 0 0
  76. Depth 8
  77. EndSubSection
  78. SubSection "Display"
  79. Viewport 0 0
  80. Depth 15
  81. EndSubSection
  82. SubSection "Display"
  83. Viewport 0 0
  84. Depth 16
  85. EndSubSection
  86. SubSection "Display"
  87. Viewport 0 0
  88. Depth 24
  89. EndSubSection
  90. EndSection
  91.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement