[DIGImend-devel] Update evdev wiki page.
Brought to you by:
spb_nick
|
From: Favux ... <fav...@gm...> - 2012-05-30 04:39:13
|
Hi Nick and Viktoria S.,
Now that the Wacom page is updated I'm looking to update the evdev page.
Right now for a /etc/X11/xorg.conf.d/52-tablet.conf I have:
Section "InputClass"
Identifier "Graphics tablet mouse"
MatchIsPointer "on"
MatchProduct "keyword"
MatchDevicePath "/dev/input/event*"
Driver "evdev"
# Apply custom Options below.
EndSection
Section "InputClass"
Identifier "Graphics tablet pen"
MatchIsTablet "on"
MatchProduct "keyword"
MatchDevicePath "/dev/input/event*"
Driver "evdev"
# Apply custom Options below.
EndSection
My tester has a UC-Logic PF1209 with a mouse. This also seems to work:
Section "InputClass"
Identifier "Graphics tablet mouse"
MatchDriver "evdev"
MatchIsPointer "on"
MatchProduct "PF1209"
# Apply custom Options below.
EndSection
Section "InputClass"
Identifier "Graphics tablet pen"
MatchDriver "evdev"
MatchIsTablet "on"
MatchProduct "PF1209"
# Apply custom Options below.
Option "ButtonMapping" "1 3 2"
EndSection
I'm assuming the "evdev keyboard catchall" with MatchIsKeyboard is
handling the keyboard events. And since no options are available for
it no reason to include a snippet for it.
Does evdev need a scroll snippet analogous to the Waltop scroll
snippet? I noticed that at least some of the recent KYE tablets have
a touch ring/multifunction dial. Does it have scroll?
Favux
|