Ah sorry to hear that.
That's why it is important to save a backup of this file.
Here is what I used for my configuration. I have an Intuos3, USB connection. These lines go directly after the mouse section. I removed all the serial lines, and I kept the USB lines. I also kept the Tablet PC lines, but I don't have a tablet PC. But it works.
Code:
Section "InputDevice"
Driver "wacom"
Identifier "stylus"
Option "Device" "/dev/input/wacom"
Option "Type" "stylus"
Option "USB" "on" #USB ONLY
Option "ForceDevice" "ISDV4" # Tablet PC ONLY
EndSection
Section "InputDevice"
Driver "wacom"
Identifier "eraser"
Option "Device" "/dev/input/wacom"
Option "Type" "eraser"
Option "USB" "on" #USB ONLY
Option "ForceDevice" "ISDV4" # Tablet PC ONLY
EndSection
Section "InputDevice"
Driver "wacom"
Identifier "cursor"
Option "Device" "/dev/input/wacom" #USB ONLY
Option "Type" "cursor"
Option "Mode" "relative"
Option "USB" "on" #USB ONLY
Option "ForceDevice" "ISDV4" #Tablet PC ONLY
EndSection
Section "InputDevice"
Driver "wacom"
Identifier "pad"
Option "Device" "/dev/ttyS0" #SERIAL ONLY
Option "Device" "/dev/input/wacom" #USB ONLY
Option "Type" "pad"
Option "USB" "on" #USB ONLY
EndSection
But, I bet you had trouble with the following:
In MetalMusicAddict's post, there were only 4 lines that were black, and the rest were slightly greyed out. The
only lines you should have added were the 4 black lines. Everything else should remain however it was.
- Did you add these lines in the "ServerLayout" Section?
- Did you leave all the other lines around it the same?
- Did you put the lines in the same order? (I don't know if that matters or not)
Code:
Section "ServerLayout"
### Whatever you had before you should remain here! ###
InputDevice "stylus" "SendCoreEvents"
InputDevice "eraser" "SendCoreEvents"
InputDevice "cursor" "SendCoreEvents" #For non-LCD tablets only
InputDevice "pad" #If you have Intuos3/Cintiq 21UX/Graphire4 tablets. It should NOT send core event
EndSection
Good luck.