SHOW:
|
|
- or go back to the newest paste.
| 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 | EndSection | |
| 13 | ||
| 14 | Section "InputClass" | |
| 15 | Identifier "evdev keyboard catchall" | |
| 16 | MatchIsKeyboard "on" | |
| 17 | MatchDevicePath "/dev/input/event*" | |
| 18 | Option "XkbLayout" "hu" | |
| 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 |