Advertisement
Guest User

Untitled

a guest
Dec 9th, 2010
363
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.15 KB | None | 0 0
  1. cat /etc/X11/xorg.conf.d/10-evdev.conf
  2. #
  3. # Catch-all evdev loader for udev-based systems
  4. # We don't simply match on any device since that also adds accelerometers
  5. # and other devices that we don't really want to use. The list below
  6. # matches everything but joysticks.
  7.  
  8. Section "InputClass"
  9. Identifier "evdev pointer catchall"
  10. MatchIsPointer "on"
  11. MatchDevicePath "/dev/input/event*"
  12. Driver "evdev"
  13. EndSection
  14.  
  15. Section "InputClass"
  16. Identifier "evdev keyboard catchall"
  17. MatchIsKeyboard "yes"
  18. MatchDevicePath "/dev/input/event*"
  19. Driver "evdev"
  20. EndSection
  21.  
  22. Section "InputClass"
  23. Identifier "evdev touchpad catchall"
  24. MatchIsTouchpad "on"
  25. MatchDevicePath "/dev/input/event*"
  26. Driver "evdev"
  27. EndSection
  28.  
  29. Section "InputClass"
  30. Identifier "evdev tablet catchall"
  31. MatchIsTablet "on"
  32. MatchDevicePath "/dev/input/event*"
  33. Driver "evdev"
  34. EndSection
  35.  
  36. Section "InputClass"
  37. Identifier "evdev touchscreen catchall"
  38. MatchIsTouchscreen "on"
  39. MatchDevicePath "/dev/input/event*"
  40. Driver "evdev"
  41. EndSection
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement