Differences between revisions 3 and 4
Revision 3 as of 2009-06-02 08:10:35
Size: 995
Editor: SamatJain
Comment:
Revision 4 as of 2009-06-02 08:37:23
Size: 1010
Editor: SamatJain
Comment:
Deletions are marked like this. Additions are marked like this.
Line 9: Line 9:
{{{ {{{#!highlight xml

Contents

  1. Wacom tablet

Wacom tablet

I use the below FDI file (to be placed in /etc/hal/fdi/policy) to configure my Wacom Intuos3 digitizer tablet. The basic configuration is handled by HAL, and the below enables the tablet to work better with my dual-monitor workstation. The Ubuntu Wacom page and the man page for the X11 wacom driver were the most useful resources in setting it up.

Specifically, it maps the tablet area to one monitor. Moving to the side of the tablet maps it to another monitor.

   1 <?xml version="1.0" encoding="UTF-8"?> <!-- -*- SGML -*- -->
   2 
   3 <deviceinfo version="0.2">
   4 
   5   <device>
   6     <match key="input.x11_driver" contains="wacom">
   7       <match key="input.x11_options.Type" contains="stylus">
   8         <merge key="input.x11_options.Twinview" type="string">horizontal</merge>
   9       </match>
  10     </match>
  11   </device>
  12 
  13 </deviceinfo>

SamatsWiki: DotFiles/X11 (last edited 2012-10-20 07:14:08 by SamatJain)