auto
Mode: Auto
manual
send a nice message
good
Omega
neutral
send a neutral message
pause
a
Introduction
m
resume
send a critical message
critical
Alpha
venomous
send a venomously vituperative screed
-
auto:pause
speed:0
+
some random text

Wacom on Fedora 9 made simple

Update:10/2009

I wrote this after installing a Wacom Intuos 3 on Fedora 9 which was a major pita. I'm now up to Fedora 11 and the tablet seems to Just Work so most of this is obsolete. I'm leaving it up because it may contain some useful info for others less fortunate.


Install the Wacom drivers

Open a terminal and enter "yum install linuxwacom"

Edit the Xwindows configuration files

Add the highlighted lines to the Serverlayout section in /etc/X11/xorg.conf

Section "ServerLayout"
	Identifier     "Default Layout"
	Screen      0  "Screen0" 0 0
	InputDevice    "Keyboard0" "CoreKeyboard"
        InputDevice    "stylus"    "SendCoreEvents"
        InputDevice    "eraser"    "SendCoreEvents"
        InputDevice    "pad"    # for intuos3
EndSection

Then add all this into the body of xorg.conf

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

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

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

# This section is for Intuos3, CintiqV5, Graphire4, or Bamboo
Section "InputDevice"
  Driver        "wacom"
  Identifier    "pad"
  Option        "Device"        "/dev/input/wacom"   # USB ONLY
  Option        "Type"          "pad"
  Option        "USB"           "on"                  # USB ONLY
EndSection

Set up Gimp

Open Gimp
File - Preferences-input devices-configure extended input devices-,
open the drop down menu labeled < default pointer >
You should see choices for pad , eraser and stylus
Mess around with them til you are happy.

Done

If you think you're too good to be simple, Whatever complexity I have to offer is Here.