Results 1 to 2 of 2

Thread: Synaptics multi finger _clicks_

  1. #1
    Join Date
    Jul 2005
    Beans
    162
    Distro
    Dapper Drake Testing/

    Synaptics multi finger _clicks_

    Hi all,

    I want to do multi finger + click remapping on a Snaptics touchpad - for example
    Two finger on touchpad + Button 1 --> Button 3

    I already have
    "tap two fingers on pad" --> Button 3 (using
    Option "TapButton2" "3" )

    I have tried
    Option "TwoFingerButton1" "3"

    and
    Option "MultiFingerButton1" "3"


    But no love.

    I _think_ I had it working on the WUBI install I did before I did this real install, and forgot to save the xorg.conf - but I can't make it work now, so perhaps I was dreaming at the time!

    Thanks for any help,

    Who
    http://compiz.blogspot.com/ - All the latest plugin and patch news for Compiz!

  2. #2
    Join Date
    Sep 2006
    Location
    Seattle, WA
    Beans
    17

    Re: Synaptics multi finger _clicks_

    Though this post is ancient I figured I'd answer it anyway as I discovered upon trying to solve the same problem (four years later, lol).

    The old way would be to put the following in your /etc/X11/xorg.conf.

    Code:
    Option "ClickFinger2" "3"
    The new way would be to create a HAL policy file /etc/hal/fdi/policy/11-x11-synaptics.fdi.

    Code:
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <deviceinfo version="0.2">
      <device>
        <match key="info.capabilities" contains="input.touchpad">
            <merge key="input.x11_driver" type="string">synaptics</merge>
            <!-- Arbitrary options can be passed to the driver using
                 the input.x11_options property since xorg-server-1.5. -->
            <!-- EXAMPLE:
            <merge key="input.x11_options.LeftEdge" type="string">120</merge>
            -->
    	<merge key="input.x11_options.ClickFinger1" type="string">1</merge>
            <merge key="input.x11_options.ClickFinger2" type="string">3</merge>
            <merge key="input.x11_options.ClickFinger3" type="string">2</merge>
        </match>
      </device>
    </deviceinfo>

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •