Ok since Ubuntu made a change in how the touchpad scroll works in 8.10 and up, I figured I would make a new post describing how to fix the scrolling region. Well mainly its for me when I reinstall Ubuntu, well Linux Mint actually since thats my current flavor of Nix. I reinstall the OS quite often. Ok this will be quick and simple.
This is a fix for the problem where the right scroll region is too large. On my laptop, a Gateway MX6930, the right scroll region extends past the physical separator of my touchpad. It takes up about half the touch pad making it difficult to navigate the computer.
Use this post http://www.eddiemonge.com/wp-admin/post.php?action=edit&post=59 to get the right scrolling region.
Type the following command into a terminal prompt (make sure you have vim installed. You do have vim installed right?)
sudo vim /etc/hal/fdi/policy/vertscroll.fdi
Once in vim you should have a blank screen with a blinking cursor. Hit ‘i’ to be able to insert text. Copy and paste the following code into the terminal. The number 5970 is for my Gateway MX6930. If you got a different value using the above linked post, then put that in instead.
<?xml version="1.0" encoding="UTF-8"?> <deviceinfo version="0.2"> <device> <match key="input.x11_driver" string="synaptics"> <merge key="input.x11_options.RightEdge" type="string">5970</merge> </match> </device> </deviceinfo>
After you have pasted it in, press the ESC key, then type ‘:wq’ (make sure to include the colon to be able to enter commands). This will write the text to the file then exit it.
After vim closes, restart the computer. Upon restart, the right scroll region should now be fixed.
Thanks to the Ubuntu forums located at http://ubuntuforums.org/showthread.php?t=970277 for this invaluable help.