Advertisement
Guest User

Untitled

a guest
Oct 21st, 2014
284
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.10 KB | None | 0 0
  1. Section "Module"
  2. Disable "dri"
  3. Disable "dri2"
  4. EndSection
  5.  
  6. #
  7. # Catch-all evdev loader for udev-based systems
  8. # We don't simply match on any device since that also adds accelerometers
  9. # and other devices that we don't really want to use. The list below
  10. # matches everything but joysticks.
  11.  
  12. Section "InputClass"
  13. Identifier "evdev pointer catchall"
  14. MatchIsPointer "on"
  15. MatchDevicePath "/dev/input/event*"
  16. Driver "evdev"
  17. EndSection
  18.  
  19. Section "InputClass"
  20. Identifier "evdev keyboard catchall"
  21. MatchIsKeyboard "on"
  22. MatchDevicePath "/dev/input/event*"
  23. Driver "evdev"
  24. EndSection
  25.  
  26. Section "InputClass"
  27. Identifier "evdev touchpad catchall"
  28. MatchIsTouchpad "on"
  29. MatchDevicePath "/dev/input/event*"
  30. Driver "evdev"
  31. EndSection
  32.  
  33. Section "InputClass"
  34. Identifier "evdev tablet catchall"
  35. MatchIsTablet "on"
  36. MatchDevicePath "/dev/input/event*"
  37. Driver "evdev"
  38. EndSection
  39.  
  40. Section "InputClass"
  41. Identifier "evdev touchscreen catchall"
  42. MatchIsTouchscreen "on"
  43. MatchDevicePath "/dev/input/event*"
  44. Driver "evdev"
  45. EndSection
  46.  
  47. # Collection of quirks and blacklist/whitelists for specific devices.
  48.  
  49.  
  50. # Accelerometer device, posts data through ABS_X/ABS_Y, making X unusable
  51. # http://bugs.freedesktop.org/show_bug.cgi?id=22442
  52. Section "InputClass"
  53. Identifier "ThinkPad HDAPS accelerometer blacklist"
  54. MatchProduct "ThinkPad HDAPS accelerometer data"
  55. Option "Ignore" "on"
  56. EndSection
  57.  
  58. Section "InputClass"
  59. Identifier "touchpad catchall"
  60. Driver "synaptics"
  61. MatchIsTouchpad "on"
  62. MatchDevicePath "/dev/input/event*"
  63. Option "TapButton1" "1"
  64. Option "TapButton2" "2"
  65. # Option "TapButton3" "3"
  66. EndSection
  67.  
  68. Section "InputClass"
  69. Identifier "Keyboard Defaults"
  70. MatchIsKeyboard "yes"
  71. Option "XkbLayout" "hr"
  72. # Option "XkbVariant" "colemak"
  73. EndSection
  74.  
  75. Section "Monitor"
  76. Identifier "Monitor0"
  77. VendorName "Unknown"
  78. ModelName "Seiko/Epson"
  79. HorizSync 30.0 - 75.0
  80. VertRefresh 60.0
  81. # HorizSync 28.0 - 33.0
  82. # VertRefresh 43.0 - 72.0
  83. Option "DPMS"
  84. EndSection
  85.  
  86. Section "Device"
  87. Identifier "Device0"
  88. Driver "nvidia"
  89. VendorName "NVIDIA Corporation"
  90. BoardName "GeForce 9600M GT"
  91. Option "DynamicTwinView" "0"
  92. Option "TripleBuffer" "1"
  93. Option "DamageEvents" "1"
  94. Option "NoLogo" "1"
  95. Option "RegistryDwords" "EnableBrightnessControl=1"
  96. EndSection
  97.  
  98. Section "Screen"
  99. Identifier "Screen0"
  100. Device "Device0"
  101. Monitor "Monitor0"
  102. DefaultDepth 24
  103. Option "Stereo" "0"
  104. # Option "metamodes" "nvidia-auto-select +0+0"
  105. Option "metamodes" "1440x900_60 +0+0"
  106. Option "SLI" "Off"
  107. Option "MultiGPU" "Off"
  108. Option "BaseMosaic" "off"
  109. # Option "metamodes" "LVDS-0: nvidia-auto-select; nvidia-auto-select {ViewPortIn=1280x800}; nvidia-auto-select {ViewPortIn=1280x800}; nvidia-auto-select {ViewPortIn=1152x864}; nvidia-auto-select {ViewPortIn=1024x768}; nvidia-auto-select {ViewPortIn=800x600}; nvidia-auto-select {ViewPortIn=640x480}"
  110. SubSection "Display"
  111. Depth 24
  112. EndSubSection
  113. EndSection
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement