Advertisement
Guest User

Untitled

a guest
Sep 29th, 2017
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  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 touchpad catchall"
  22.         MatchIsTouchpad "on"
  23.         MatchDevicePath "/dev/input/event*"
  24.         Driver "evdev"
  25. EndSection
  26.  
  27. Section "InputClass"
  28.         Identifier "evdev tablet catchall"
  29.         MatchIsTablet "on"
  30.         MatchDevicePath "/dev/input/event*"
  31.         Driver "evdev"
  32. EndSection
  33.  
  34. Section "InputClass"
  35.         Identifier "evdev touchscreen catchall"
  36.         MatchIsTouchscreen "on"
  37.         MatchDevicePath "/dev/input/event*"
  38.         Driver "evdev"
  39. EndSection
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement