Guest User

Untitled

a guest
Jul 19th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.51 KB | None | 0 0
  1. [samuel@bedwyr ~]$ 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 "on"
  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
  42. [samuel@bedwyr ~]$ cat /etc/X11/xorg.conf.d/10-synaptics.conf
  43. Section "InputClass"
  44. Identifier "touchpad catchall"
  45. Driver "synaptics"
  46. MatchIsTouchpad "on"
  47. MatchDevicePath "/dev/input/event*"
  48. Option "TapButton1" "1"
  49. Option "TapButton2" "2"
  50. Option "TapButton3" "3"
  51. EndSection
Add Comment
Please, Sign In to add comment