Advertisement
Emulatorman

10-evdev.conf

Dec 1st, 2011
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.36 KB | None | 0 0
  1. # Catchall classes for input devices
  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.  
  19. # Keyboard Model
  20. Option "XkbModel" "pc105"
  21.  
  22. # Keyboard layouts
  23. Option "XkbLayout" "br, es, us, la-latin1"
  24. Option "XkbOptions" "grp:alt_shift_toggle,grp:switch,compose:rwin,terminate:ctrl_alt_bksp,lv3:ralt_switch,numpad:pc"
  25. EndSection
  26.  
  27. Section "InputClass"
  28. Identifier "evdev touchpad catchall"
  29. MatchIsTouchpad "on"
  30. MatchDevicePath "/dev/input/event*"
  31. Driver "evdev"
  32. EndSection
  33.  
  34. Section "InputClass"
  35. Identifier "evdev tablet catchall"
  36. MatchIsTablet "on"
  37. MatchDevicePath "/dev/input/event*"
  38. Driver "evdev"
  39. EndSection
  40.  
  41. Section "InputClass"
  42. Identifier "evdev touchscreen catchall"
  43. MatchIsTouchscreen "on"
  44. MatchDevicePath "/dev/input/event*"
  45. Driver "evdev"
  46. EndSection
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement