Advertisement
Guest User

Db0

a guest
Mar 30th, 2008
149
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 3.96 KB | None | 0 0
  1.  
  2. # xorg.conf (xorg X Window System server configuration file)
  3. #
  4. # This file was generated by dexconf, the Debian X Configuration tool, using
  5. # values from the debconf database.
  6. #
  7. # Edit this file with caution, and see the xorg.conf manual page.
  8. # (Type "man xorg.conf" at the shell prompt.)
  9. #
  10. # This file is automatically updated on xserver-xorg package upgrades *only*
  11. # if it has not been modified since the last upgrade of the xserver-xorg
  12. # package.
  13. #
  14. # If you have edited this file but would like it to be automatically updated
  15. # again, run the following command:
  16. #   sudo dpkg-reconfigure -phigh xserver-xorg
  17.  
  18. Section "ServerLayout"
  19.  
  20.     # Uncomment if you have a wacom tablet
  21.     #   InputDevice     "stylus"    "SendCoreEvents"
  22.     #   InputDevice     "cursor"    "SendCoreEvents"
  23.     #   InputDevice     "eraser"    "SendCoreEvents"
  24.     Identifier     "Default Layout"
  25.     Screen         "Default Screen" 0 0
  26.     InputDevice    "Generic Keyboard"
  27.     InputDevice    "Configured Mouse"
  28.     InputDevice    "Synaptics Touchpad"
  29.     Option      "AIGLX" "on" #->Enables Xorg's AIGLX rendering technic
  30. EndSection
  31.  
  32. Section "Files"
  33. EndSection
  34.  
  35. Section "Module"
  36.     Load  "glx"
  37. EndSection
  38.  
  39. Section "InputDevice"
  40.     Identifier  "Generic Keyboard"
  41.     Driver      "kbd"
  42.     Option      "CoreKeyboard"
  43.     Option      "XkbRules" "xorg"
  44.     Option      "XkbModel" "pc105"
  45.     Option      "XkbLayout" "de"
  46. EndSection
  47.  
  48. Section "InputDevice"
  49.     Identifier  "Configured Mouse"
  50.     Driver      "mouse"
  51.     Option      "CorePointer"
  52.     Option      "Device" "/dev/input/mice"
  53.     Option      "Protocol" "ImPS/2"
  54.     Option      "ZAxisMapping" "4 5"
  55.     Option      "Emulate3Buttons" "true"
  56. EndSection
  57.  
  58. Section "InputDevice"
  59.     Identifier  "Synaptics Touchpad"
  60.     Driver      "synaptics"
  61.     Option      "SendCoreEvents" "true"
  62.     Option      "Device" "/dev/psaux"
  63.     Option      "Protocol" "auto-dev"
  64.     Option      "HorizEdgeScroll" "0"
  65. EndSection
  66.  
  67. Section "InputDevice"
  68.     Identifier  "stylus"
  69.     Driver      "wacom"
  70.     Option      "Device" "/dev/input/wacom"
  71.     Option      "Type" "stylus"
  72.     Option      "ForceDevice" "ISDV4"# Tablet PC ONLY
  73. EndSection
  74.  
  75. Section "InputDevice"
  76.     Identifier  "eraser"
  77.     Driver      "wacom"
  78.     Option      "Device" "/dev/input/wacom"
  79.     Option      "Type" "eraser"
  80.     Option      "ForceDevice" "ISDV4"# Tablet PC ONLY
  81. EndSection
  82.  
  83. Section "InputDevice"
  84.     Identifier  "cursor"
  85.     Driver      "wacom"
  86.     Option      "Device" "/dev/input/wacom"
  87.     Option      "Type" "cursor"
  88.     Option      "ForceDevice" "ISDV4"# Tablet PC ONLY
  89. EndSection
  90.  
  91. Section "Monitor"
  92.     Identifier   "Generic Monitor"
  93.     Option      "DPMS"
  94. EndSection
  95.  
  96. Section "Device"
  97.  
  98.     #        Option    "XaaNoOffscreenPixmaps"
  99.     Identifier  "Generic Video Card"
  100.     Driver      "fglrx"
  101.     Option      "XAANoOffscreenPixmaps" "on" #->This one IS absolutely NEEDED! It shouldn't be missed!
  102.     Option      "TexturedVideo" "on" #->AVIVO accelerated video through 3D engine, it should be "off" for cards earlier than X1050. See Note 0...
  103.     Option      "VideoOverlay" "off"#->Deprecated for X1050 and later cards. BUT it should be "on" for prior to X1050 cards! See Note 0...
  104.     Option      "OpenGLOverlay" "off"#->Deprecated generally that's why off. See Note 0...
  105.     Option      "Textured2D" "on" #->Experimental! See Note 1...
  106.     Option      "TexturedXrender" "on" #->Experimental! See Note 2...
  107.     Option      "UseFastTLS" "1" #->Enable/disable fast thread local storage. Disable this option when virtual machines or WineX fail to work properly.
  108.     Option      "BackingStore" "on"
  109. # found on http://forum.compiz-fusion.org/showthread.php?t=6794
  110.     BusID       "PCI:1:0:0"
  111. EndSection
  112.  
  113. Section "Screen"
  114.     Identifier "Default Screen"
  115.     Device     "Generic Video Card"
  116.     Monitor    "Generic Monitor"
  117.     DefaultDepth     24
  118.     SubSection "Display"
  119.         Modes    "1280x800"
  120.     EndSubSection
  121. EndSection
  122.  
  123. Section "DRI"
  124.     Mode         0666
  125. EndSection
  126.  
  127. Section "Extensions"
  128.  
  129. #   Option      "Composite" "0"
  130.     Option      "RENDER" "Enable"
  131.     Option      "DAMAGE" "Enable"
  132.     Option      "Composite" "Enable"
  133.     Option      "XVideo" "Enable" #(optional)
  134. EndSection
  135.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement