Advertisement
kokopo

Untitled

Oct 15th, 2012
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.94 KB | None | 0 0
  1. # /etc/X11/xorg.conf
  2. # Created by KNOPPIX # Delete this line if you don't want KNOPPIX to overwrite your /etc/X11/xorg.conf
  3.  
  4. Section "ServerLayout"
  5. Identifier "XFree86 Configured"
  6. Screen 0 "Screen0" 0 0
  7.  
  8. # Since evdev, manual keyboard/mice entries are mostly ignored:
  9. # Keyboard auto-probed
  10.  
  11. # Touchpad auto-probed
  12. # USB mouse auto-probed
  13. # Serial Mouse auto-probed
  14. ### AIGLX for compiz 3D-Support with DRI & Composite
  15. ### This option doesn't hurt even if it's not supported by the individual card
  16. Option "AIGLX" "true"
  17.  
  18. EndSection
  19.  
  20. Section "ServerFlags"
  21. Option "AllowMouseOpenFail" "true"
  22. Option "DPMS" "true"
  23.  
  24. EndSection
  25.  
  26. Section "Files"
  27. ModulePath "/usr/lib/xorg/modules"
  28. FontPath "/usr/share/fonts/X11/misc:unscaled"
  29. FontPath "/usr/share/fonts/X11/75dpi:unscaled"
  30. FontPath "/usr/share/fonts/X11/100dpi:unscaled"
  31. FontPath "/usr/share/fonts/X11/Type1"
  32. FontPath "/usr/share/fonts/X11/Speedo"
  33. FontPath "/usr/share/fonts/X11/PEX"
  34. # Additional fonts: Locale, Gimp, TTF...
  35. FontPath "/usr/share/fonts/X11/cyrillic"
  36. # FontPath "/usr/share/fonts/X11/latin2/75dpi"
  37. # FontPath "/usr/share/fonts/X11/latin2/100dpi"
  38. # True type and type1 fonts are also handled via xftlib, see /etc/X11/XftConfig!
  39. FontPath "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType"
  40. FontPath "/usr/share/fonts/truetype"
  41. FontPath "/usr/share/fonts/latex-ttf-fonts"
  42. EndSection
  43.  
  44. Section "Module"
  45. # Comments: see http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=346408
  46. Load "dbe" # Double Buffering Extension, very important.
  47. Load "dri" # This shouldn't be available choice if user has selected driver vga, vesa or nv.
  48. Load "glx" # GLX Extension.
  49. Load "freetype" # Freetype fonts.
  50. Load "type1" # Type 1 fonts
  51. Load "record" # Developer extension, usually not needed
  52. Load "extmod" # This is okay, but if you look into "man xorg.conf" you'll find option NOT to include DGA extension with extmod, and for a good reason.. DGA causes instability as it accesses videoram without consulting X about it.
  53. SubSection "extmod"
  54. Option "omit xfree86-dga"
  55. EndSubSection
  56. # Load "speedo" # Speedo fonts, this module doesn't exist in Xorg 7.0.17
  57. # The following are deprecated/unstable/unneeded in Xorg 7.0
  58. # Load "ddc" # ddc probing of monitor, this should be never present, as it gets automatically loaded.
  59. # Load "GLcore" # This should be never present, as it gets automatically loaded.
  60. # Load "bitmap" # Should be never present, as it gets automatically loaded. This is a font module, and loading it in xorg.conf makes X try to load it twice.
  61. EndSection
  62.  
  63. Section "Extensions"
  64. # compiz needs Composite, but it can cause bad (end even softreset-resistant)
  65. # effects in some graphics cards, especially nv.
  66. Option "Composite" "Enable"
  67. EndSection
  68.  
  69.  
  70.  
  71.  
  72. # Monitor section auto-generated by KNOPPIX mkxorgconfig
  73.  
  74. Section "Monitor"
  75. Identifier "Monitor0"
  76. ModelName "Generic Monitor"
  77. # HorizSync 28.0 - 78.0 # Warning: This may fry very old Monitors
  78. # HorizSync 28.0 - 96.0 # Warning: This may fry old Monitors
  79. # VertRefresh 50.0 - 76.0 # Very conservative. May flicker.
  80. # VertRefresh 50.0 - 60.0 # Extreme conservative. Will flicker. TFT default.
  81.  
  82.  
  83. Option "MonitorLayout" "LVDS,AUTO"
  84.  
  85. EndSection
  86.  
  87.  
  88. Section "Device"
  89. ### Available Driver options are:-
  90. # sw_cursor is needed for some ati and radeon cards
  91. #Option "sw_cursor"
  92. #Option "hw_cursor"
  93. #Option "NoAccel"
  94. #Option "ShowCache"
  95. #Option "ShadowFB"
  96. #Option "UseFBDev"
  97. #Option "Rotate"
  98. Identifier "Card0"
  99. # Driver (chipset) autodetect
  100. VendorName "All"
  101. BoardName "All"
  102. # BusID "PCI:1:0:0"
  103.  
  104. # compiz, beryl 3D-Support with DRI & Composite
  105. Option "XAANoOffscreenPixmaps"
  106. Option "AllowGLXWithComposite" "true"
  107. # Some Radeon cards don't handle this well.
  108. # Option "EnablePageFlip" "true"
  109. Option "TripleBuffer" "true"
  110.  
  111. # Tweaks for the xorg 7.4 (otherwise broken) "intel" driver
  112. # Option "Tiling" "no"
  113. Option "Legacy3D" "false"
  114.  
  115.  
  116. # These two lines are (presumably) needed to prevent fonts from being scrambled
  117. Option "XaaNoScanlineImageWriteRect" "true"
  118. Option "XaaNoScanlineCPUToScreenColorExpandFill" "true"
  119. EndSection
  120.  
  121. Section "Screen"
  122. Identifier "Screen0"
  123. Device "Card0"
  124. Monitor "Monitor0"
  125.  
  126. Option "AddARGBGLXVisuals" "true"
  127. Option "DisableGLXRootClipping" "true"
  128. SubSection "Display"
  129. Depth 1
  130.  
  131. EndSubSection
  132. SubSection "Display"
  133. Depth 4
  134.  
  135. EndSubSection
  136. SubSection "Display"
  137. Depth 8
  138.  
  139. EndSubSection
  140. SubSection "Display"
  141. Depth 15
  142.  
  143. EndSubSection
  144. SubSection "Display"
  145. Depth 16
  146.  
  147. EndSubSection
  148. SubSection "Display"
  149. Depth 24
  150.  
  151. EndSubSection
  152. SubSection "Display"
  153. Depth 32
  154.  
  155. EndSubSection
  156. EndSection
  157.  
  158. Section "DRI"
  159. Mode 0666
  160. EndSection
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement