Hi,
I'd like to discuss here about settings to get Wacom tablets working on Dual Screen configs on Linux.
First here is the material I use:
-Wacom intuos3 A4
-first screen : 1920x1080
-second screen : 1280x1024
-Graphic card : Nvidia geforce 9800 GT
OS: Ubuntu 10.04 x86_64
So here is a simple schema showing how the screens must be mapped on tablet to get a correct ratio:
Attachment:
wacomActiveArea.png [ 6.33 KiB | Viewed 2310 times ]
to get this now I have to use those scripts to toggle screens:
script 1 :
#!/bin/sh
# Script Xsetwacom pour Intuos 3 A4, sous Ubuntu 10.04.
#tablette sur le Screen 0
xsetwacom set "Wacom Intuos3 9x12" Screen_No 0
xsetwacom set "Wacom Intuos3 9x12 eraser" Screen_No 0
xsetwacom set "Wacom Intuos3 9x12" TopX 0
xsetwacom set "Wacom Intuos3 9x12" TopY 0
xsetwacom set "Wacom Intuos3 9x12" BottomX 36586
xsetwacom set "Wacom Intuos3 9x12" BottomY 34290
xsetwacom set "Wacom Intuos3 9x12 eraser" TopX 0
xsetwacom set "Wacom Intuos3 9x12 eraser" TopY 0
xsetwacom set "Wacom Intuos3 9x12 eraser" BottomX 36586
xsetwacom set "Wacom Intuos3 9x12 eraser" BottomY 34290
script 2 :
#!/bin/sh
# Script Xsetwacom pour Intuos 3 A4, sous Ubuntu 10.04.
#tablette sur le Screen 1
xsetwacom set "Wacom Intuos3 9x12" Screen_No 1
xsetwacom set "Wacom Intuos3 9x12 eraser" Screen_No 1
xsetwacom set "Wacom Intuos3 9x12" TopX 34912
xsetwacom set "Wacom Intuos3 9x12" TopY 0
xsetwacom set "Wacom Intuos3 9x12" BottomX 58200
xsetwacom set "Wacom Intuos3 9x12" BottomY 43413
xsetwacom set "Wacom Intuos3 9x12 eraser" TopX 34912
xsetwacom set "Wacom Intuos3 9x12 eraser" TopY 0
xsetwacom set "Wacom Intuos3 9x12 eraser" BottomX 5820
xsetwacom set "Wacom Intuos3 9x12 eraser" BottomY 43413
Also I have to use Twinview mode, with screen 1 on the right of screen 0, because with Xinerama there's a strange Bug: when drawing in graphic apps like Mypaint, Gimp, and Synfig,
the line is offset far on the right from the cursor.
Please share your experience with dualscreen+wacom, I'm curious to know if there's a more simple way to get it working …