|
Att få igång wacom ritbrädan i Debian krävde lite pyssel. Nedan finns de intressanta bitarna i xorg.conf som fick igång den på min burk. När det är klart ska gimp konfigureras för att Wacom ritbräda ska fungera där. Kika på flashanimationen för att se hur man gör (klicka på bilden):
Section "InputDevice"
Identifier "stylus"
Driver "wacom"
Option "Device" "/dev/input/wacom"
Option "Type" "stylus"
Option "ForceDevice" "ISDV4"
EndSection
Section "InputDevice"
Identifier "eraser"
Driver "wacom"
Option "Device" "/dev/input/wacom"
Option "Type" "eraser"
Option "ForceDevice" "ISDV4"
EndSection
Section "InputDevice"
Identifier "cursor"
Driver "wacom"
Option "Device" "/dev/input/wacom"
Option "Type" "cursor"
Option "ForceDevice" "ISDV4"
EndSection
Section "ServerLayout"
Identifier "Default Layout"
Screen "Default Screen"
InputDevice "Generic Keyboard"
InputDevice "Configured Mouse"
InputDevice "Synaptics Touchpad"
InputDevice "stylus" "SendCoreEvents"
InputDevice "cursor" "SendCoreEvents"
InputDevice "eraser" "SendCoreEvents"
EndSection
|
En liten rättning bara: Identifer (under InputDevice) och InputDevice (under ServerLayout) måste stämam överens. Alltså: antingen ska båda vara "erase" eller så ska båda vara "eraser".