Pagina 1 di 1

configurazione touchpad

Inviato: lunedì 31 maggio 2010, 14:15
da vda
Salve a tutti,

sono alla ricerca di un modo per configurare il touchpad. Di tanto in tanto, difatti, senza apparente motivo, sembra impazzire: scrolla in basso, schizza da una parte all'altra del monitor, etc.

Qualche idea?

Grazie,  8) 

Re: configurazione touchpad

Inviato: lunedì 31 maggio 2010, 16:48
da steff
Io uso il file /etc/hal/fdi/policy/11-x11-synaptics.fdi

Codice: Seleziona tutto

<?xml version="1.0" encoding="ISO-8859-1"?>
<deviceinfo version="0.2">
  <device>
    <match key="info.product" contains="ETPS/2 Elantech Touchpad">
        <append key="info.capabilities" type="strlist">input.touchpad</append>
    </match> 
    <match key="info.capabilities" contains="input.touchpad">
        <merge key="input.x11_driver" type="string">synaptics</merge>
        <merge key="input.x11_options.TapButton1" type="string">1</merge>
        <merge key="input.x11_options.TapButton2" type="string">3</merge>
        <merge key="input.x11_options.TapButton3" type="string">2</merge>
        <!-- Arbitrary options can be passed to the driver using
             the input.x11_options property since xorg-server-1.5. -->
     
        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.HorizEdgeScroll" type="string">true</merge>
 <!-- EXAMPLES:
        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
        -->
    </match>
  </device>Le opzioni da configurare sono molti ma richiedono un po' di smanettamento con il file:
[code]man synaptics
</deviceinfo>
[/code]

[Risolto] Re: configurazione touchpad

Inviato: lunedì 31 maggio 2010, 16:50
da vda
Forse ho risolto: ho installato "gsynaptics" ed ho abilitato il solo scrolling verticale.

Grazie a tutti.

Ciao,  8)