Pages

Thursday, March 3, 2011

Enable Two-Finger-Scrolling on Ubuntu 10.04

Last time I share an article about how to enable two finger scrolling on Ubuntu 10.10 . And today I tried to enable two finger scrolling on Ubuntu 10.04. It's a little different from Ubuntu 10.10. If you followed how to enable two finger scrolling on Ubuntu 10.10 in previous article, you'll found problem at number 6 (no directory xorg.conf.d). Nah, here is another trick to enable it on Ubuntu 10.04 :)

One thing you must know, this guide only works with those who have Synaptics Touchpad on their laptop. It's still the same, download Pointing Devices from Ubuntu Software Center and disable vertical and horizontal scrolling from there. And now open your text editor (gedit, kate, etc.) and copy paste this code:

synclient HorizTwoFingerScroll=1
synclient VertTwoFingerScroll=1
synclient EmulateTwoFingerMinZ=40
synclient EmulateTwoFingerMinW=8

And save it for example in your home directory. For example I save it as 2fsr in my home directory.

Next, open terminal and navigate to your home directory and give an access to your recently created file (in my case, it is 2fsr file). In my case, I type this in terminal:
sudo chmod +x 2fsr

Next, try to execute the file with this code:
./2fsr

And now try your touchpad, it should work now :) And now let's put it in startup application. Navigate to System>Preferences>Startup Applications and add a new item there and browse your recently created file (in my case, it is 2fsr) and add it. Done! Now you can use two finger scrolling every time you boot into Ubuntu 10.04. Hope this helps :)

No comments:

Post a Comment