Created
April 30, 2018 19:25
-
-
Save forgems/108228bf5b698a4c62c2a966d5013f5f to your computer and use it in GitHub Desktop.
udev rules for thinkpad t470 trackpoint on ubuntu
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# T470 trackpoint udev rules | |
# Put inside /etc/udev/rules.d/ | |
# After that run | |
# sudo udevadm control --reload-rules | |
# sudo udevadm trigger | |
ACTION=="add", | |
SUBSYSTEM=="input", | |
ATTR{name}=="TPPS/2 IBM TrackPoint", | |
ATTR{device/sensitivity}="190", | |
ATTR{device/speed}="140", | |
ATTR{device/inertia}="6", | |
ATTR{device/press_to_select}="0" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment