Advertisement
Dj_Dexter

10-evdev.conf

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