Advertisement
Guest User

Untitled

a guest
Jun 2nd, 2015
217
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. # Catch-all evdev loader for udev-based systems
  2. # We don't simply match on any device since that also adds accelerometers
  3. # and other devices that we don't really want to use. The list below
  4. # matches everything but joysticks.
  5.  
  6. Section "InputClass"
  7. Identifier "evdev pointer catchall"
  8. MatchIsPointer "on"
  9. MatchDevicePath "/dev/input/event*"
  10. Driver "evdev"
  11. EndSection
  12.  
  13. Section "InputClass"
  14. Identifier "evdev keyboard catchall"
  15. MatchIsKeyboard "on"
  16. MatchDevicePath "/dev/input/event*"
  17. Driver "evdev"
  18. EndSection
  19.  
  20. Section "InputClass"
  21. Identifier "evdev touchscreen catchall"
  22. MatchIsTouchscreen "on"
  23. MatchDevicePath "/dev/input/event*"
  24. Driver "evdev"
  25. EndSection
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement