You are not logged in.

#1 2008-09-06 16:43:49

WernerL
Member
Registered: 2007-07-03
Posts: 161

Can't get my wacom work properly

Hell guys,

I just installed the wacom drivers from the aur and followed the wiki documentation to get it al working.

But badly, it doesn't sad If I move the stylus above my wacom tablet the mouse is moving, but when I click (hit the wacom) the mouse suddenly stops moving :S I just don't understand why... This way i'm unable to draw stuff with my wacom.

And another thing, I have 2 screens setup in dualscreen mode, how do I get my wacom only work on the first screen ?

fyi, I added this lines to the ServerLayout section:

    InputDevice    "pad"      "SendCoreEvents"
    InputDevice    "cursor"   "SendCoreEvents"
    InputDevice    "stylus"   "SendCoreEvents"
    InputDevice    "eraser"   "SendCoreEvents"

And added the following sections to xorg.conf:

Section "InputDevice"
        Identifier  "stylus"
        Driver      "wacom"
        Option      "Type"  "stylus"
        Option      "Device"  "/dev/input/event6"
        Option      "USB" "on"
        Option      "Mode"  "Absolute"
        Option      "Vendor"  "WACOM"
        Option      "Threshold"  "5"
EndSection

Section "InputDevice"
        Identifier  "eraser"
        Driver      "wacom"
        Option      "Type" "eraser"
        Option      "Device" "/dev/input/event6"
        Option      "USB" "on"
        Option      "Mode" "Absolute"
        Option      "Vendor" "WACOM"
        Option      "Threshold" "5"
EndSection

Section "InputDevice"
        Identifier  "cursor"
        Driver      "wacom"
        Option      "Type" "cursor"
        Option      "Device" "/dev/input/event6"
        Option      "USB" "on"
        Option      "Mode" "Absolute"
        Option      "Vendor" "WACOM"
EndSection

Who knows what i'm doing wrong ?

And btw, I have a graphire 4,

//edit
typo

Last edited by WernerL (2008-09-06 20:13:47)

Offline

#2 2008-10-11 23:02:55

grai
Member
Registered: 2006-01-11
Posts: 4

Re: Can't get my wacom work properly

Use the stable version of linuxwacom (0.8.0-blah) rather than the development version (0.8.1-blah).

Here's a PKGBUILD:

# Contributor: Ilya Galushko <helloy-ilya@yandex.ru>

pkgname=linuxwacom
pkgver=0.8.0.3
_pkgver=0.8.0-3
pkgrel=1
pkgdesc="drivers for Wacom tablets"
arch=('i686' 'x86_64')
url="http://linuxwacom.sourceforge.net/"
license=('GPL' 'LGPL')
depends=('libxi' 'ncurses' 'tk' 'pixman')
options=('!libtool' '!emptydirs')
install=linuxwacom.install
source=(http://prdownloads.sourceforge.net/linuxwacom/$pkgname-$_pkgver.tar.bz2
        10-wacom.rules)

build() {
  cd "$srcdir/$pkgname-$_pkgver"
  cp ChangeLog $startdir

  ./configure --prefix=/usr
  make || return 1
  make DESTDIR="$pkgdir" install

  install -D -m 644 "$startdir/10-wacom.rules" "$pkgdir/etc/udev/rules.d/10-wacom.rules"
}

# vim:set ts=2 sw=2 et:

Offline

Board footer

Powered by FluxBB