jump to navigation

Problem TouchPad di Slackware13 August 30, 2009

Posted by Devriza Wilmanura Imanta in Linux, Slackware.
trackback

Setelah kemarin selesai install Slackware13 di laptop. hmm, great !! hehe.
tapi ada problem di TouchPad laptop yang fungsi click belum bisa jalan, untuk scroll udah lancar.
karena kebanyakan pake mouse biasa, jadi taunya kalo TouchPad g bisa fungsi clicknya telat :D , dan itupun setelah baca thread ini http://www.linuxquestions.org/questions/slackware-14/how-to-enable-touchpad-tap-click-xfce-751213/
:D .

ok, langsung saja, untuk ngaktifkan fungsi click pada touchpad berikut petunjuk yang saya dapat dari sini :

1. remove the xorg.conf file (backup, whatever) to let hal do its thing
2. edit the hal policy in usr/share/hal/fdi/policy/10osvendor/11-x11-synaptics.fdi
I found that it was necessary to edit this file since all the options in it are commented out by default. It seems that hal doesn’t load the synaptics driver for the X server if there are no options specified.

<?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. -->
        <!-- EXAMPLES:
        Switch on shared memory, enables the driver to be configured at runtime
        <merge key="input.x11_options.SHMConfig" type="string">true</merge>

        Maximum movement of the finger for detecting a tap
        <merge key="input.x11_options.MaxTapMove" type="string">2000</merge>

        Enable vertical scrolling when dragging along the right edge
        <merge key="input.x11_options.VertEdgeScroll" type="string">true</merge>

        Enable vertical scrolling when dragging with two fingers anywhere on the touchpad
        <merge key="input.x11_options.VertTwoFingerScroll" type="string">true</merge>

        Enable horizontal scrolling when dragging with two fingers anywhere on the touchpad
        <merge key="input.x11_options.HorizTwoFingerScroll" type="string">true</merge>

        If on, circular scrolling is used
        <merge key="input.x11_options.CircularScrolling" type="string">true</merge>

        For other possible options, check CONFIGURATION DETAILS in synaptics man page
        -->

        <merge key="input.x11_options.SHMConfig" type="string">true</merge>
        <merge key="input.x11_options.TapButton1" type="string">1</merge>
        <merge key="input.x11_options.FastTaps" type="string">1</merge>
    </match>
  </device>
</deviceinfo>

I added the last 3 merge lines
3. restart hald and the X server

Semoga click pada TouchPad akan langsung berfungsi dengan baik :D .

Comments»

No comments yet — be the first.