You are here: Home Articles Technical Setting up and Using Intuos Tablet on Linux Dual Monitor
About the Author

Khairil believes that one can earn a decent living and enjoy life while enriching the wider community.

 

He currently works as an IT consultant for Inigo, advocates FOSS and free knowledge and culture.

 

Contact

Commenting is enabled with OpenID login.

 

All content on this site shared under the Creative Commons Attribution License 3.0

.

 

This is a personal site, comments and content here does not reflect the official viewpoint of Inigo Consulting.

OpenID Log in

 

Dual Monitor

Dual Monitor setup with Intuos 3 wacom

If you have are using a dual screen setup, one problem you will have is that the default mapping of your tablet will be across both screens. For me this makes drawing useless, as circles become ovals.

I've tried different options provided by the driver page howto but unable to get a satisfactory result when use Xrandr to setup your dual monitors (default with the Display Preferences).

The best solution, was to enabled TwinView option, which maps the tablet accurately to my first 1920x1200 monitor, but only for 80% of the width. This affects the cursor too, which means, I can't use the extra space for palettes without having to access it with a mouse.

The ideal situation would be that stylus and eraser, map to this accurate space, but still be able to select and navigate both screens with "cursor".

You'll have go back to editing /etc/X11/xorg.conf for this to work.. the following is mine:

#
# Note that some configuration settings that could be done previously
# in this file, now are automatically configured by the server and settings
# here are ignored.
#
# If you have edited this file but would like it to be automatically updated
# again, run the following command:
#   sudo dpkg-reconfigure -phigh xserver-xorg

Section "Monitor"
    Identifier      "Configured Monitor"
EndSection

Section "InputDevice"
  Driver        "wacom"
  Identifier    "stylus"
  Option        "Device"        "/dev/input/wacom" # USB ONLY?
  Option        "Type"          "stylus"
  Option        "USB"           "on"               # USB ONLY
  Option        "TwinView"      "horizontal"
EndSection

Section "InputDevice"
  Driver        "wacom"
  Identifier    "eraser"
  Option        "Device"        "/dev/input/wacom" # USB ONLY?
  Option        "Type"          "eraser"
  Option        "USB"           "on"               # USB ONLY
  Option        "TwinView"      "horizontal"

EndSection

Section "InputDevice"
  Driver        "wacom"
  Identifier    "cursor"
  Option        "Device"        "/dev/input/wacom" # USB ONLY?
  Option        "Type"          "cursor"
  Option        "USB"           "on"               # USB ONLY
  Option        "TwinView"      "horizontal"
EndSection

Section "InputDevice"
  Driver        "wacom"
  Identifier    "pad"
  Option        "Device"        "/dev/input/wacom"    # USB ONLY
  Option        "Type"          "pad"
  Option        "USB"           "on"                  # USB ONLY
EndSection

Section "Screen"
    Identifier      "Default Screen"
    Monitor         "Configured Monitor"
    Device          "Configured Video Device"
    SubSection "Display"
        Depth               24
        Modes               "1920x1200 1600x1200" "1280x1024" "1024x768" "800x600" "640x480"
        Virtual     3200 1232
    EndSubSection
EndSection

Section "Device"
    Identifier      "Configured Video Device"
EndSection

Section "ServerLayout"
  Identifier    "Default Layout"
  Screen        "Default Screen"
  InputDevice   "stylus"  "SendCoreEvents"
  InputDevice   "eraser"  "SendCoreEvents"
  InputDevice   "cursor"  "SendCoreEvents" # For non-LCD tablets only
  InputDevice   "pad"                      # For Intuos3/CintiqV5/Graphire4/Bamboo tablets
EndSection
Document Actions