ホーム
はじめに
うちのコンピュータ
Slackware3.5/3.6/4.0/7.0/7.1の設定
ALSAドキュメント作業所
Slackware7.0日本語化計画
Wacom FAVO USBを使う
  LinuxのUSBドライバーをインストールする
  ドライバーのロード/動作確認
  FAVO USB用XFree86ドライバー
  XF86Configの設定(XFree86-4.0.x編)
  XF86Configの設定(XFree86-3.3.x編)
  XFree86の動作確認
  GIMPを使ってみる
GIMPで作成したCG
リンク

XF86Configの設定(XFree86-3.3.x編)

Last update: 平成13年6月1日
XFree86-3.3.xでは真面目に使用していないので、動かない場合もあるかもしれませんが、このような感じです。
xf86Wacom.soの場合は、
Section "Module"
    Load "xf86Wacom.so"
EndSection

# Configure the XInput devices

Section "XInput"

    SubSection "WacomStylus"
        Port            "/dev/input/event0"
        DeviceName      "Pen1"
        Mode            Absolute
        HistorySize     200
        AlwaysCore
    EndSubsection

    SubSection "WacomEraser"
        Port            "/dev/input/event0"
        DeviceName      "Eraser1"
        AlwaysCore
        Mode            Absolute
    EndSubsection

    SubSection "WacomCursor"
        Port            "/dev/input/event0"
        Mode            Relative
        AlwaysCore
    EndSubsection

EndSection
xf86GraphireUSB_3.soの場合は
Section "Module"
    Load "xf86GraphireUSB_3.so"
EndSection

Section "XInput"
    Subsection "gmouse"
        Port        "/dev/input/event0"
        DeviceName  "Graphire Mouse"
        Mode        Relative
        AlwaysCore
    EndSubsection
    Subsection "gstylus"
        Port        "/dev/input/event0"
        DeviceName  "Graphire Pen"
        Mode        Absolute
        AlwaysCore
    EndSubsection
    Subsection "geraser"
        Port        "/dev/input/event0"
        DeviceName  "Graphire Eraser"
        Mode        Absolute
        AlwaysCore
    EndSubsection
EndSection
です。