Wacom Bamboo (Fun) einbinden
Als Root in der Konsole einloggen
apt-get install wacom-tools xserver-xorg-input-wacom
Jetzt müssen noch ein paar Änderungen an der /etc/X11/xorg.conf vorgenommen werden. Wo ihr die in der xorg.conf rein tippert ist egal...
(Änderungen gehen nach einem Grafiktreiber-Update verloren, müssen dann also neu getippert werden)
Section "Input Device"
Identifier "stylus"
Driver "wacom"
Option "Device" "/dev/input/wacom"
Option "Type" "stylus"
Option "USB" "on"
EndSection
Section "InputDevice"
Identifier "eraser"
Driver "wacom"
Option "Device" "/dev/input/wacom"
Option "Type" "eraser"
Option "USB" "on"
EndSection
Section "InputDevice"
Identifier "cursor"
Driver "wacom"
Option "Device" "/dev/input/wacom"
Option "Type" "cursor"
Option "USB" "on"
EndSection
# nur für Intuos3, Cintiq 21UX, Graphire 4 und Bamboo
Section "InputDevice"
Identifier "pad"
Driver "wacom"
Option "Device" "/dev/input/wacom"
Option "Type" "pad"
Option "USB" "on"
EndSection
Section "ServerLayout"
Identifier "Default Layout"
Screen "Default Screen"
InputDevice "cursor" "SendCoreEvents"
InputDevice "stylus" "SendCoreEvents"
InputDevice "eraser" "SendCoreEvents"
#Nur für Intuos3, Cintiq 21UX, Graphire 4 und Bamboo
InputDevice "pad"
EndSection
Um die Änderungen zu übernehmen, startet ihr einfach euren X-Server neu (Strg&Alt&Backspace)