Lenovo X60 Tablet xorg.conf for Ubuntu 8.04

icon3
1 Star2 Stars3 Stars4 Stars5 Stars (No Ratings Yet)
Loading ... Loading ...
Posted May 19, 2008 at 08:23 (UTC)

Just posting my xorg.conf; it works for me (sorry for the indenting)! Please intially remember:

sudo aptitude install wacom-tools xserver-xorg-input-wacom

And to test:

wacdump /dev/input/wacom

And now the conf:

Section "InputDevice"
	Identifier	"Generic Keyboard"
	Driver		"kbd"
	Option		"XkbRules"	"xorg"
	Option		"XkbModel"	"pc105"
	Option		"XkbLayout"	"dk"
EndSection
 
Section "InputDevice"
	Identifier	"Configured Mouse"
	Driver		"vmmouse"
EndSection
 
Section "InputDevice"
	Identifier	"Synaptics Touchpad"
	Driver		"synaptics"
	Option		"SendCoreEvents"	"true"
	Option		"Device"		"/dev/psaux"
	Option		"Protocol"		"auto-dev"
	Option		"HorizEdgeScroll"	"0"
EndSection
 
Section "InputDevice" #added by mikl
	Identifier	"stylus"
	Driver		"wacom"
	Option		"Device"      "/dev/input/wacom"
	Option		"Type"        "stylus"
    Option      "ForceDevice" "ISDV4"
    Option      "USB"         "on"
EndSection
 
Section "InputDevice" #added by mikl
	Identifier	"eraser"
	Driver		"wacom"
	Option		"Device"      "/dev/input/wacom"
	Option		"Type"        "eraser"
    Option      "ForceDevice" "ISDV4"
    Option      "USB"         "on"
EndSection
 
Section "InputDevice" #added by mikl
	Identifier	"cursor"
	Driver		"wacom"
	Option		"Device"	  "/dev/input/wacom"
	Option		"Type"        "cursor"
    Option      "Mode"        "relative"
    Option      "ForceDevice" "ISDV4"
    Option      "USB"         "on"
EndSection
 
Section "Device"
	Identifier	"Configured Video Device"
EndSection
 
Section "Monitor"
	Identifier	"Configured Monitor"
EndSection
 
Section "Screen"
	Identifier	"Default Screen"
	Monitor		"Configured Monitor"
	Device		"Configured Video Device"
EndSection
 
Section "ServerLayout"
	Identifier	"Default Layout"
	Screen		"Default Screen"
	InputDevice	"Synaptics Touchpad"
	Inputdevice	"stylus"	"SendCoreEvents" #added by mikl
	Inputdevice	"cursor"	"SendCoreEvents" #added by mikl
	Inputdevice	"eraser"	"SendCoreEvents" #added by mikl
EndSection

Leave a Comment

Please note: Comment moderation is enabled and may delay your comment. There is no need to resubmit your comment.