I've tried to tweak my xorg.conf, but it appears that my system is using /usr/share/X11/xorg.conf.d and contains 20-wacom.conf as below:
- Code: Select all
Section "InputClass"
Identifier "Wacom class"
# WALTOP needs a patched kernel driver, that isn't in mainline lk yet,
# so for now just let it fall through and be picked up by evdev instead.
# MatchProduct "Wacom|WALTOP|WACOM"
MatchProduct "Wacom|WACOM"
MatchDevicePath "/dev/input/event*"
Driver "wacom"
EndSection
Section "InputClass"
Identifier "Wacom serial class"
MatchProduct "Serial Wacom Tablet"
Driver "wacom"
Option "ForceDevice" "ISDV4"
EndSection
Section "InputClass"
Identifier "Wacom serial class identifiers"
MatchProduct "WACf|FUJ02e5|FUJ02e7"
Driver "wacom"
EndSection
# N-Trig Duosense Electromagnetic Digitizer
Section "InputClass"
Identifier "Wacom N-Trig class"
MatchProduct "HID 1b96:0001|N-Trig Pen"
MatchDevicePath "/dev/input/event*"
Driver "wacom"
Option "Button2" "3"
EndSection
trying:
xsetwacom set "touch" Gesture "on"
doesn't work, because my device appears as 'Finger' though referring to it with that also doesn't work, but I have tried with the ID number.
I can only assume that something like the following needs to go in somewhere, but not sure whether I should be creating an xorg.conf in /etc/X11 or what:
- Code: Select all
# This section is for the TabletPC that supports touch
Section "InputDevice"
Driver "wacom"
Identifier "touch"
Option "Device" "/dev/ttyS0" # SERIAL ONLY
Option "Type" "touch"
#Option "ForceDevice" "ISDV4" # Tablet PC ONLY
EndSection
Section "ServerLayout"
Identifier "Default Layout"
Screen "Default Screen"
InputDevice "stylus" "SendCoreEvents"
InputDevice "eraser" "SendCoreEvents"
InputDevice "touch" "SendCoreEvents"
EndSection
The results of xinput list:
- Code: Select all
⎡ Virtual core pointer id=2 [master pointer (3)]
⎜ ↳ Virtual core XTEST pointer id=4 [slave pointer (2)]
⎜ ↳ Wacom ISDv4 E3 Finger id=11 [slave pointer (2)]
⎜ ↳ Wacom ISDv4 E3 Pen eraser id=12 [slave pointer (2)]
⎜ ↳ Wacom ISDv4 E3 Pen id=13 [slave pointer (2)]
⎜ ↳ Wireless Keyboard/Mouse id=15 [slave pointer (2)]
⎜ ↳ PIXART USB OPTICAL MOUSE id=16 [slave pointer (2)]
⎜ ↳ SynPS/2 Synaptics TouchPad id=19 [slave pointer (2)]
⎣ Virtual core keyboard id=3 [master keyboard (2)]
↳ Virtual core XTEST keyboard id=5 [slave keyboard (3)]
↳ Power Button id=6 [slave keyboard (3)]
↳ Video Bus id=7 [slave keyboard (3)]
↳ Video Bus id=8 [slave keyboard (3)]
↳ Power Button id=9 [slave keyboard (3)]
↳ Sleep Button id=10 [slave keyboard (3)]
↳ Wireless Keyboard/Mouse id=14 [slave keyboard (3)]
↳ HP Webcam id=17 [slave keyboard (3)]
↳ AT Translated Set 2 keyboard id=18 [slave keyboard (3)]
↳ HP WMI hotkeys id=20 [slave keyboard (3)]
↳ ACPI Virtual Keyboard Device id=21 [slave keyboard (3)]
Attempting to set gesture:
- Code: Select all
xsetwacom set 11 Gesture "on"
Property 'Wacom Enable Touch Gesture' does not exist on device.
So not really sure what to do now...