Config Utility for ThinkPad TrackPoint Bluetooth Keyboards for OSX
- Maximize Trackpoint Sensitivity
- Disable middle-click (only scrolling with Trackpoint)
- ThinkPad Compact Bluetooth Keyboard with TrackPoint (0B47189)
- ThinkPad TrackPoint Keyboard II
make install
sudo tpkb
defaults write -g com.apple.mouse.scaling 9
(Re-login required)
replace 9 to any you want, the max you can set from SystemPreferce GUI is 3
modify file src/tp.cpp
, replace 0x09
to any you want
// sensitivity
// 18 02 xx # xx Sensitivity, 00-FF
buf[0] = 0x18;
buf[1] = 0x02;
buf[2] = 0x09;
hid_write(dev, buf, 3);
enjoy :)