[ltp] T40: Touchpad and trackpoint and external mouse and scrolling?

Andreas Stemmer linux-thinkpad@linux-thinkpad.org
Tue, 12 Sep 2006 08:05:55 +0200


Tomek Jarzynka wrote:
> If someone has gotten trackpoint scrolling and external
> mouse to work simultaneously, please send me your xorg.conf.
> Thanks in advance ;)

The xorg.conf below (only relevant parts) works for me on my R51 with
trackpoint, touchpad and bluetooth mouse. You have to enable the event
interface for input device drivers in the kernel.

Andreas


---
Section "InputDevice"
	Identifier	"Trackpoint"
	Driver		"mouse"
	Option		"Name" "TPPS/2 IBM TrackPoint"
	Option		"EmulateWheel" "yes"
	Option		"EmulateWheelButton" "2"
	Option		"EmulateWheelTimeout" "200"
	Option		"Emulate3Buttons" "no"
	Option		"XAxisMapping" "6 7"
	Option		"YAxisMapping" "4 5"
EndSection

Section "InputDevice"
	Identifier	"Touchpad"
	Driver		"synaptics"
	Option		"Name" "SynPS/2 Synaptics TouchPad"
EndSection

Section "InputDevice"
	Identifier	"BTMouse"
	Driver		"evdev"
	Option		"Name" "Bluetooth HID Boot Protocol Device"
EndSection

Section "ServerLayout"
	Identifier	"LCD only"
	Screen		0 "LCD" 0 0
	InputDevice	"Touchpad"	"CorePointer"
	InputDevice	"Trackpoint"	"AlwaysCore"
	InputDevice	"BTMouse"	"AlwaysCore"
	InputDevice	"Keyboard"	"CoreKeyboard"
EndSection