translator
11,127
edits
(Created page with "Возможно, потребуется сделать симлинк на него следующим образом: sudo ln -s /usr/share/X11/xorg.conf.d/10-evdev.conf /e...") |
(Created page with "#Section "InputClass" # Identifier "evdev touchscreen catchall" # MatchIsTouchscreen "on" # MatchDevicePath "/dev/input/event*" # Driver "evdev" #E...") |
||
Line 28: | Line 28: | ||
sudo ln -s /usr/share/X11/xorg.conf.d/10-evdev.conf /etc/X11/xorg.conf.d/10-evdev.conf | sudo ln -s /usr/share/X11/xorg.conf.d/10-evdev.conf /etc/X11/xorg.conf.d/10-evdev.conf | ||
<pre> | <pre> | ||
~ >>> cat /etc/X11/xorg.conf.d/10-evdev.conf | ~ >>> cat /etc/X11/xorg.conf.d/10-evdev.conf | ||
# | # | ||
# | # Загрузчик evdev для систем на базе udev. | ||
# | # Мы не просто сопоставляем любые устройства, поскольку это также добавляет акселерометры | ||
# | # и другие устройства, которые мы на самом деле не хотим использовать. Приведенный ниже список | ||
# | # соответствует всему, кроме джойстиков. | ||
Section "InputClass" | Section "InputClass" | ||
Identifier "evdev pointer catchall" | Identifier "evdev pointer catchall" | ||
Line 45: | Line 42: | ||
Driver "evdev" | Driver "evdev" | ||
EndSection | EndSection | ||
#Section "InputClass" | #Section "InputClass" | ||
# Identifier "evdev keyboard catchall" | # Identifier "evdev keyboard catchall" | ||
Line 54: | Line 49: | ||
# Driver "evdev" | # Driver "evdev" | ||
#EndSection | #EndSection | ||
#Section "InputClass" | #Section "InputClass" | ||
# Identifier "evdev touchpad catchall" | # Identifier "evdev touchpad catchall" | ||
Line 63: | Line 56: | ||
# Driver "evdev" | # Driver "evdev" | ||
#EndSection | #EndSection | ||
#Section "InputClass" | #Section "InputClass" | ||
# Identifier "evdev tablet catchall" | # Identifier "evdev tablet catchall" | ||
Line 72: | Line 63: | ||
# Driver "evdev" | # Driver "evdev" | ||
#EndSection | #EndSection | ||
#Section "InputClass" | #Section "InputClass" | ||
# Identifier "evdev touchscreen catchall" | # Identifier "evdev touchscreen catchall" | ||
Line 82: | Line 71: | ||
#EndSection | #EndSection | ||
</pre> | </pre> | ||