This tutorial will show you how to give your touchpad on your laptop the ability to scroll up and down using a circular motion on the touchpad. this is similar to vertical and horizontal scrolling. You will have to edit your xorg.conf file so if you do not feel comfortable doing this then do not continue this tutorial.
ok so let's start:
first you need to make sure that the driver for your touchpad on your laptop is synaptics (it should be). To find out whether it is or not, do the following:
and search for :Code:sudo nano /etc/X11/xorg.conf
if you find this section (the Identifier may be bamed something else but as long as the driver is synaptics, you are good) then continue if not, do not.Section "InputDevice"
Identifier "Synaptics Touchpad"
Driver "synaptics"
at the end of this section, add:
so that it looks like:Option "CircularScrolling" "on"
Option "CircScrollTrigger" "2"
Option "CircularScrolling" "on" turns circular scrolling on, and Option "CircScrollTrigger" "2" selects the edge which should be the trigger. Meaning that if I set it to 2 then circular scrolling will be activated when I put my finger at edge 2. This is the translation from numbers to edges:Section "InputDevice"
Identifier "Synaptics Touchpad"
Driver "synaptics"
Option "SendCoreEvents" "true"
Option "Device" "/dev/psaux"
Option "Protocol" "auto-dev"
Option "HorizEdgeScroll" "0"
Option "CircularScrolling" "on"
Option "CircScrollTrigger" "2"
EndSection
the way you use it is similar to an ipod, clockwise motions on the touchpad will scroll downwards while counterclockwise will scroll upwards.0 any edge
1 top edge
2 top right corner
3 right edge
4 bottom right corner
5 bottom edge
6 bottom left corner
7 left edge
8 top left corner
once you have done this, restart X with ctrl+alt+backspace. be sure to save all your work and exit all apps first. hope it works for you.



Adv Reply






Bookmarks