Ubuntu – Configuring Wacom Tablet buttons and options

12.04configurationgraphics-tabletwacom

I have a new Wacom Intuos5 Touch Medium. Surprisingly enough, it worked out of the box when I connected it to my computer (Ubuntu 12.04 32-bit), including the pen pressure and some touch pad features. I also managed to change the input for left-handed use, using the GUI provided by Ubuntu to manage the Wacom driver.

However, when I entered the button mapping menu to configure the buttons on the tablet itself (not those on the stylus), no matter what I did, the changes I made there had no effect. Right now, one of the buttons can only be used as a right-click, another as a middle-click and the button which should change modes for the touch ring as left-click. The touch ring itself doesn't seem to do anything, except for some strange flickers in Gimp's coordinates. The other buttons do nothing.

I searched a bit and realized that xsetwacom can be used, but I'm not entirely sure HOW to use it: how do I see the names of the buttons so that I can assign them functions? How do I make the touch ring work? What exactly am I looking for in that command?

Also, is there a way to make one of the buttons responsible for turning on/off the touch pad? And is there a way to configure rotation with fingers, like Wacom shows is possible with this tablet?

Your answers will be greatly appreciated, I'm quite at a loss here!

Best Answer

Here's a short overview of what I used to set up my Wacom tablet in Ubuntu. (cfr. also this blog post of mine on setting up a Wacom tablet in Ubuntu).

1. Device names

xsetwacom --list devices

gives you the names of your devices. In my case the result is:

Wacom Intuos Pro M Pen stylus    id: 14 type: STYLUS   
Wacom Intuos Pro M Pen eraser    id: 15 type: ERASER   
Wacom Intuos Pro M Pen cursor    id: 16 type: CURSOR   
Wacom Intuos Pro M Pen pad       id: 17 type: PAD     
Wacom Intuos Pro M Finger touch  id: 18 type: TOUCH

2. Parameters

xsetwacom --list parameters

gives you a long list of parameters you can use, with a brief explanation of what they mean. The parameter "Button" for instance will be used to assign a key to a button (or "express key" as Wacom calls it).

3. Modifiers

xsetwacom  --list modifiers

gives you the list of modifiers (keys really) you can set the parameters to. The modifier "PgDn" for instance will be used to set a button ("express key") to act as if you press the "PageDown" button on your keyboard.

4. Mapping buttons

With this knowledge, you can construct the following type of commands:

xsetwacom set "Wacom Intuos Pro M Pen pad" Button 2 key "b"

The above example would set "button 2" to the key "b".

You can find the numbers of the buttons as follows. The mappings for all supported tablets can be found in the /usr/share/libwacom/ directory. There are text files in the main directory that use a *.tablet extension naming convention. The buttons for the Intuos Pro are designated with alphabetical labels where A=Button 1, B=Button 2, etc. The subdirectory located in /usr/share/libwacom/layouts/ contains vector image files that display a graphical depictions of the tablets and the button assignments. These *.svg files should be opened with Inkscape or another application capable of displaying scalable vector graphics files.

Note that these commands will have to be entered at every new login.

More info on xsetwacom on the linuxwacom wiki.