LinuxにおけるTrackPointの設定

Arch Linuxにおける設定例

いろいろやり方があるみたいだが、今回は次のようにして設定した。

/etc/X11/xorg.conf.d/ に 20-thinkpad.conf のようなファイルを次のように作成する。Xを再起動後、設定が有効になる。(普通に再起動しておけばおk)

Section "InputClass"
	Identifier	"Trackpoint Wheel Emulation"
	MatchProduct	"TPPS/2 IBM TrackPoint|DualPoint Stick|Synaptics Inc. Composite TouchPad / TrackPoint|ThinkPad USB Keyboard with TrackPoint|USB Trackpoint pointing device|Composite TouchPad / TrackPoint"
	MatchDevicePath	"/dev/input/event*"
	Option		"EmulateWheel"		"true"
	Option		"EmulateWheelButton"	"2"
	Option		"Emulate3Buttons"	"false"
	Option		"XAxisMapping"		"6 7"
	Option		"YAxisMapping"		"4 5"
EndSection