Advertisement
Guest User

coolio

a guest
Mar 2nd, 2010
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.33 KB | None | 0 0
  1. # xorg.conf (X.Org X Window System server configuration file)
  2. #
  3. # This file was generated by dexconf, the Debian X Configuration tool, using
  4. # values from the debconf database.
  5. #
  6. # Edit this file with caution, and see the xorg.conf manual page.
  7. # (Type "man xorg.conf" at the shell prompt.)
  8. #
  9. # This file is automatically updated on xserver-xorg package upgrades *only*
  10. # if it has not been modified since the last upgrade of the xserver-xorg
  11. # package.
  12. #
  13. # Note that some configuration settings that could be done previously
  14. # in this file, now are automatically configured by the server and settings
  15. # here are ignored.
  16. #
  17. # If you have edited this file but would like it to be automatically updated
  18. # again, run the following command:
  19. # sudo dpkg-reconfigure -phigh xserver-xorg
  20. # options AddARGBetc to fix disappeared title bars with compiz
  21. # vendor, board, busid added maybe helps window border issue
  22. # Re-enable ctrl+alt+backsp = kill x and login screen
  23.  
  24. Section "Monitor"
  25. Identifier "Configured Monitor"
  26. EndSection
  27.  
  28. Section "Screen"
  29. Identifier "Default Screen"
  30. Monitor "Configured Monitor"
  31. Device "Configured Video Device"
  32. DefaultDepth 24
  33. Option "AddARGBGLXVisuals" "True"
  34. EndSection
  35.  
  36. Section "Module"
  37. Load "glx"
  38. EndSection
  39.  
  40. Section "Extensions"
  41. Option "Composite" "Enable"
  42. EndSection
  43.  
  44. # nologo suppresses logo during boot, so faster boot
  45. # heuristic governs amount of pixelmap data that is moved to video memory, which is faster than RAM
  46. # TripleBuffer enables more efficient method of double buffering (used to remove flicker from a screen update)
  47. # pixmapcache en allowshmpixmaps set to 0 prevents applications from allocating Shared Memory pixmaps (geen delen van andere apps tijdens starten nieuwe app, MK)
  48. Section "Device"
  49. Identifier "Configured Video Device"
  50. Option "RenderAccel" "true"
  51. Option "AllowGLXWithComposite" "true"
  52. Option "AddARGBVisuals" "True"
  53. Option "AddARGBGLXVisuals" "True"
  54. Driver "nvidia"
  55. Option "NoLogo" "True"
  56. Option "MigrationHeuristic" "greedy" #Available values are: smart, greedy, always
  57. Option "TripleBuffer" "True"
  58. Option "PixmapCacheSize" "1000000"
  59. Option "AllowSHMPixmaps" "0"
  60. # Next option must be either undeclared or false, in order to avoid periodic short-term
  61. # freezes on beryl and other OpenGL intensive programs
  62. Option "UseEvents" "false"
  63.  
  64. EndSection
  65.  
  66. #Section "ServerFlags"
  67. # Option "DontZap" "false"
  68. #EndSection
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement