Alle Beiträge von thomas

Linux auf dem Fujitsu Siemens Stylistic 5011 – Der Stift

Um den Stift des ST5011 unter Linux zu verwenden muss man folgende Erweiterungen an der xorg.conf durchführen:

Section "InputDevice"
  Driver        "wacom"
  Identifier    "stylus"
  Option        "Device"        "/dev/input/wacom"
  Option        "Type"          "stylus"
  Option        "ForceDevice"   "ISDV4"
EndSection

Section "InputDevice"
  Driver        "wacom"
  Identifier    "eraser"
  Option        "Device"        "/dev/input/wacom"
  Option        "Type"          "eraser"
  Option        "ForceDevice"   "ISDV4"
EndSection

Section "InputDevice"
  Driver        "wacom"
  Identifier    "cursor"
  Option        "Device"        "/dev/input/wacom"
  Option        "Type"          "cursor"
  Option        "Mode"          "relative"
  Option        "ForceDevice"   "ISDV4"
EndSection

Section "ServerLayout"
  InputDevice   "cursor"        "SendCoreEvents" # Add this line
  InputDevice   "stylus"        "SendCoreEvents" # Add this line
  InputDevice   "eraser"        "SendCoreEvents" # Add this line
EndSection