Qeul type de tablette utilises-tu ?
L'exemple ci-dessus correspond à une tablette USB.
Moi, pour une tablette serie (COM1) j'ai :
# Déclaration du Stylet
Section "InputDevice"
Identifier "stylus"
Driver "wacom"
Option "Type" "stylus"
Option "Device" "/dev/ttyS0"
EndSection
# Déclaration de la gomme :
Section "InputDevice"
Identifier "eraser"
Driver "wacom"
Option "Type" "eraser"
Option "Device" "/dev/ttyS0"
EndSection
# Déclaration du curseur (pour la souris):
Section "InputDevice"
Identifier "cursor"
Driver "wacom"
Option "Type" "cursor"
Option "Device" "/dev/ttyS0"
EndSection
Section "ServerLayout"
Identifier "Server Layout"
Screen "Screen0"
InputDevice "Mouse1" "CorePointer"
InputDevice "stylus" "AlwaysCore"
InputDevice "eraser" "AlwaysCore"
InputDevice "cursor" "AlwaysCore"
InputDevice "Keyboard1" "CoreKeyboard"
EndSection
A+