I bought my girlfriend a Wacom Bamboo CTH-470 recently and it is running well after installing wacom-dkms. I have now run into a wall that I don't know how to get around. The touch on the tablet will not turn off. I am running Ubuntu 12.04 Beta 2. I have tried turning the touch off from the wacom settings in the settings menu. The pen and touch both work perfectly fine, it is just that the touch drives her insane when trying to draw in myPaint.
Edit
Checking the comments and other answers it looks like some are still looking for toggling touch using the tablet's buttons. If you just want that you need 3 things (shown for Ubuntu/Unity):
randompast's solution with a 1-line command is nice and can be turned into a more convenient 1-line toggle command:
You don't need that if you already have your own script or command line of course, but it's a convenient way of toggling the touch of connected tablets without knowing the tablets' name or id.
If you want to run this without the terminal, you need to save the script in a file, make it executable and create a keyboard shortcut for it. That's because you can't assign a command directly to the tablet's buttons (but you can assign a keystroke ...).
In Unity open System Settings > Keyboard > Shortcuts and create a new shortcut. Avoid the Super key since it may not always work in step 3.
As command, put the name of your script file (full path, between single quotes, if you're not sure then drag-drop the file in a terminal and use the created command).
Open System Settings > Wacom Tablet > Map Buttons ... and assign the keystroke you chose to your button.
To know which button is which you can first assign them letters with no modifier, select a text field and press the buttons to see which letter they correspond to.
Here beware: not all the buttons will be recognised (3 out of 4 for my Bamboo) and not all keystroke will work (I can't get any with the Super key to work). You'll have to try different combinations.
Original Answer (to learn the commands)
I set up my Pen & Touch over a year ago so I may be wrong here. What I usually do is run in a terminal:
This won't work for you as you have another tablet so try first
which should give you the parameters to use. First you need to get the name of your device (let's call it DEVICE_NAME), so try:
This gives me for my Pen & Touch:
Wacom BambooPT 2FG 4x5 Pen eraser id: 11 type: ERASER
Wacom BambooPT 2FG 4x5 Pen stylus id: 12 type: STYLUS
Wacom BambooPT 2FG 4x5 Finger pad id: 13 type: PAD
Wacom BambooPT 2FG 4x5 Finger touch id: 14 type: TOUCH
Obviously the one which is of type TOUCH is the one to disable here. Here DEVICE_NAME would be Wacom BambooPT 2FG 4x5 Finger touch and DEVICE_ID would be 14.Then you need to know which parameter to disable, so try:
There's a plethora of parameters to enable/disable, and for each parameter name (let's call this PARAM_NAME) the type of value expected is explained. In this case we want to turn the Touch parameter Off, which you can do with the --set option. The syntax is:
or
If you're not sure what to put in place of PARAM_VALUE, try the --get option to see the current value:
Here is a 1-line solution:
I wrote this script so that I can control turning touch on/off no matter which computer I plug the tablet into (because these IDs change between machines). You might find it useful as well.
I put this script in /usr/local/bin along with these two simple bash scripts to call it without having to remember the parameters...
kermit-hw-bamboo-untouch:
kermit-hw-bamboo-touch:
That said, I find it really sad that there isn't better support for tablets in Ubuntu. Maybe one day Wacom will show our community some attention too...
Throwing yet another script in the batch, I wrote this one for myself. I have it in an executable file
wacomtouch
in a.scripts
folder I added to my environment path. Thus, to disable touch, I only need to runwacomtouch off
. It automatically detects all the params, so it theoretically works with any Wacom tablet automatically.(This relies on the
pcregrep
package.)