Skip to content

Instantly share code, notes, and snippets.

@flaneur2020
Created November 4, 2012 04:25
Show Gist options
  • Select an option

  • Save flaneur2020/4010216 to your computer and use it in GitHub Desktop.

Select an option

Save flaneur2020/4010216 to your computer and use it in GitHub Desktop.
ubuntu notes
# Thinkpad Trackpoint Scrolling
http://psung.blogspot.jp/2010/04/thinkpad-trackpoint-scrolling-in-ubuntu.html
保存到`/usr/share/X11/xorg.conf.d/20-thinkpad.conf `
```
Section "InputClass"
Identifier "Trackpoint Wheel Emulation"
MatchProduct "TrackPoint"
MatchDevicePath "/dev/input/event*"
Driver "evdev"
Option "EmulateWheel" "true"
Option "EmulateWheelButton" "2"
Option "Emulate3Buttons" "false"
Option "XAxisMapping" "6 7"
Option "YAxisMapping" "4 5"
EndSection
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment