1
0
mirror of https://github.com/mbirth/wiki.git synced 2024-09-20 06:33:24 +01:00
wiki.mbirth.de/know-how/software/linux/_posts/2009-07-23-synaptics-touchpad.md

1.3 KiB

created layout layout_old redirect_to tags title toc updated
2009-02-28 01:36:04 +0100 redirect default https://blog.mbirth.de/archives/2009/02/28/synaptics-touchpad.html
know-how
software
linux
Synaptics Touchpad false 2009-07-23 12:45:13 +0200

To use features like circular scrolling1 of a Synaptics touchpad, you need to add the following lines to your /etc/X11/xorg.conf:

Section "InputDevice"
    Identifier   "Synaptics Touchpad"
    Driver       "synaptics"
    Option       "SHMConfig" "true"
    Option       "SendCoreEvents" "true"
    Option       "Device" "/dev/psaux"
    Option       "Protocol" "auto-dev"
    Option       "HorizEdgeScroll" "0"
EndSection

You also need to add the following line into your ServerLayout section in that file:

    InputDevice "Synaptics Touchpad"

After an upgrade to Jaunty, these lines are commented out by the update-manager. Just uncomment them and everything should work again.

Afterwards you can install the gsynaptics package to manage the settings for your touchpad - incl. enabling the circular scrolling.


  1. It's like a jogdial: just draw a circle with your finger starting from top-center. Clockwise will scroll down, counter-clockwise will scroll up. ↩︎