Advertisement
Guest User

Untitled

a guest
Jun 28th, 2015
432
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.24 KB | None | 0 0
  1. ls /etc/X11/xorg.conf.d/:
  2. 00-avoid-glamor.conf 00-keyboard.conf 99-nvidia.conf
  3. cat /usr/share/X11/xorg.conf.d/10-evdev.conf
  4. # Catch-all evdev loader for udev-based systems
  5. # We don't simply match on any device since that also adds accelerometers
  6. # and other devices that we don't really want to use. The list below
  7. # matches everything but joysticks.
  8.  
  9. Section "InputClass"
  10. Identifier "evdev pointer catchall"
  11. MatchIsPointer "on"
  12. MatchDevicePath "/dev/input/event*"
  13. Driver "evdev"
  14. EndSection
  15.  
  16. Section "InputClass"
  17. Identifier "evdev keyboard catchall"
  18. MatchIsKeyboard "on"
  19. MatchDevicePath "/dev/input/event*"
  20. Driver "evdev"
  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