How to get the trackpad to work? (the scroll button)
Posted: Fri Jan 22, 2010 1:44 pm
im on the x41, have no idea how to use terminal or commands in linux.
Est. 1995 - Copyright © 1995-2017 (see FAQ for details)
https://forum.thinkpads.com/
Code: Select all
<match key="info.product" string="TPPS/2 IBM TrackPoint">
<merge key="input.x11_options.EmulateWheel" type="string">true</merge>
<merge key="input.x11_options.EmulateWheelButton" type="string">2</merge>
<merge key="input.x11_options.YAxisMapping" type="string">4 5</merge>
<merge key="input.x11_options.Emulate3Buttons" type="string">true</merge>
<merge key="input.x11_options.EmulateWheelTimeout" type="string">200</merge>
</match>
I believe 3 years ago the method was different.t140568 wrote:This works perfectly on my T500 running Ubuntu 9.10. Wow, why didn't I do this on my other TPs running linux ~3years ago?
Well, at least I can use it for the time being. Good info to know, though.GomJabbar wrote: I believe 3 years ago the method was different.![]()
The previous method was to edit xorg.conf. This year or next I suspect the method to be different again since HAL is being done away with.
As long as it works, the result will be the same, but configuration via xorg.conf is becoming obsolete and may no longer be supported in future versions of xorg. I just checked and don't even have a xorg.conf file at all (stock fedora 12 install, iirc it's the same on recent versions of ubuntu).Zedicus wrote:is this preferable to just adding the blurb in the xorg.conf file? and why?
I did and tried the DevKit method via GPointingDeviceSettings, but to no avail. The program installed fine through apt-get and runs, but won't effectively make with the scrolling action. Hmmm...
In Ubuntu 10.04 (and probably in other distributions to be released at around the same time) HAL is not is deprecated so the mouse-wheel.fdi method will not work anymore. There seem to be a couple of new methods like the gpointing-device settings but my experience with wasn't good and according to thinkwiki not all new methods will work in the future. The one that is working for me and seems to be future-proof (at least for a while) is the xinput method:Zedicus wrote:correct, but if you add a xorg.conf it works fine. how are all of thouse settings controlled now with out the xorg.conf anyways?
Code: Select all
xinput set-prop '"TPPS/2 IBM TrackPoint"' "Evdev Wheel Emulation" 1
xinput set-prop '"TPPS/2 IBM TrackPoint"' "Evdev Wheel Emulation Button" 2
xinput set-prop '"TPPS/2 IBM TrackPoint"' "Evdev Wheel Emulation Timeout" 200
Code: Select all
xinput set-prop '"TPPS/2 IBM TrackPoint"' "Evdev Wheel Emulation Axes" 6 7 4 5Code: Select all
sudo chmod +x /usr/bin/trackpoint.shIt took a few tries to get GPointing running on my X31, but it did work. It numbers the buttons left to right, so the center is button #2. What settings did you try?t140568 wrote:I did and tried the DevKit method via GPointingDeviceSettings, but to no avail. The program installed fine through apt-get and runs, but won't effectively make with the scrolling action. Hmmm...
Didn't even think to change this. Changed to #2 on mine and it worked like a charm.NorrisCell wrote:It numbers the buttons left to right, so the center is button #2. What settings did you try?