Advertisement
v4567

10-evdev.conf

May 3rd, 2012
1,038
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.28 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. Option "XkbModel" "pc105"
  13. Option "XkbLayout" "us,ru(winkeys)"
  14. Option "XkbOptions" "grp:ctrl_shift_toggle,grp_led:scroll.compose:rwin"
  15. EndSection
  16.  
  17. Section "InputClass"
  18. Identifier "evdev keyboard catchall"
  19. MatchIsKeyboard "on"
  20. MatchDevicePath "/dev/input/event*"
  21. Driver "evdev"
  22. EndSection
  23.  
  24. Section "InputClass"
  25. Identifier "evdev touchpad catchall"
  26. MatchIsTouchpad "on"
  27. MatchDevicePath "/dev/input/event*"
  28. Driver "evdev"
  29. EndSection
  30.  
  31. Section "InputClass"
  32. Identifier "evdev tablet catchall"
  33. MatchIsTablet "on"
  34. MatchDevicePath "/dev/input/event*"
  35. Driver "evdev"
  36. EndSection
  37.  
  38. Section "InputClass"
  39. Identifier "evdev touchscreen catchall"
  40. MatchIsTouchscreen "on"
  41. MatchDevicePath "/dev/input/event*"
  42. Driver "evdev"
  43. EndSection
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement