como manter o touchpad, mas deseja desativar os botões

5

O botão direito do acer v5 do meu filho está quebrado. Ele ficou molhado de leite e agora parece que de repente continua pressionado.

Como posso desativar os botões para apenas trabalhar com o touchpad?

Eu tenho o OpenSUSE 13.1 com o KDE.

    
por maniat1k 22.09.2014 / 23:44

1 resposta

6

A maioria dos touchpads pode ser manipulada com as ferramentas de linha de comando synclient e xinput . Você pode ler mais sobre essas duas ferramentas de linha de comando aqui no wiki do ArchLinux:

Das 2 ferramentas, não acredito que você possa desabilitar os uttons usando synclient . Você pode fazer isso usando xinput . Das duas ferramentas, essa é a mais difícil de usar, mas não é muito difícil.

Se você executá-lo com a opção -h , receberá as seguintes informações de uso:

$ xinput -h
usage :
    xinput get-feedbacks <device name>
    xinput set-ptr-feedback <device name> <threshold> <num> <denom>
    xinput set-integer-feedback <device name> <feedback id> <value>
    xinput get-button-map <device name>
    xinput set-button-map <device name> <map button 1> [<map button 2> [...]]
    xinput set-pointer <device name> [<x index> <y index>]
    xinput set-mode <device name> ABSOLUTE|RELATIVE
    xinput list [--short || --long || --name-only || --id-only] [<device name>...]
    xinput query-state <device name>
    xinput test [-proximity] <device name>
    xinput create-master <id> [<sendCore (dflt:1)>] [<enable (dflt:1)>]
    xinput remove-master <id> [Floating|AttachToMaster (dflt:Floating)] [<returnPointer>] [<returnKeyboard>]
    xinput reattach <id> <master>
    xinput float <id>
    xinput set-cp <window> <device>
    xinput test-xi2 <device>
    xinput map-to-output <device> <output name>
    xinput list-props <device> [<device> ...]
    xinput set-int-prop <device> <property> <format (8, 16, 32)> <val> [<val> ...]
    xinput set-float-prop <device> <property> <val> [<val> ...]
    xinput set-atom-prop <device> <property> <val> [<val> ...]
    xinput watch-props <device>
    xinput delete-prop <device> <property>
    xinput set-prop <device> [--type=atom|float|int] [--format=8|16|32] <property> <val> [<val> ...]
    xinput disable <device>
    xinput enable <device>

Gostaria de começar com as opções cujos nomes incluem o texto "botão".

$ xinput -h 2>&1 | grep button
    xinput get-button-map <device name>
    xinput set-button-map <device name> <map button 1> [<map button 2> [...]]

Você precisará do nome do dispositivo para consultá-lo. Para isso, você usará xinput list .

Exemplo

$ xinput list
⎡ Virtual core pointer                      id=2    [master pointer  (3)]
⎜   ↳ Virtual core XTEST pointer                id=4    [slave  pointer  (2)]
⎜   ↳ Logitech Unifying Device. Wireless PID:4013   id=9    [slave  pointer  (2)]
⎜   ↳ SynPS/2 Synaptics TouchPad                id=11   [slave  pointer  (2)]
⎜   ↳ TPPS/2 IBM TrackPoint                     id=12   [slave  pointer  (2)]
⎣ Virtual core keyboard                     id=3    [master keyboard (2)]
    ↳ Virtual core XTEST keyboard               id=5    [slave  keyboard (3)]
    ↳ Power Button                              id=6    [slave  keyboard (3)]
    ↳ Video Bus                                 id=7    [slave  keyboard (3)]
    ↳ Sleep Button                              id=8    [slave  keyboard (3)]
    ↳ AT Translated Set 2 keyboard              id=10   [slave  keyboard (3)]
    ↳ ThinkPad Extra Buttons                    id=13   [slave  keyboard (3)]

Normalmente, é o "SynPS / Synaptics TouchPad 2", esse identificador de dispositivo, mas pode variar para seu hardware específico.

$ xinput get-button-map "SynPS/2 Synaptics TouchPad"
1 2 3 4 5 6 7 8 9 10 11 12 

Estes são todos os "botões" especificados para o touchpad do meu laptop Thinkpad T410. Quaisquer cantos e tal no touchpad também são considerados "botões", é por isso que existem tantos na saída acima. Você pode descobrir mais sobre quais botões são quais números na lista acima usando a opção --long .

Exemplo

$ xinput list --long "SynPS/2 Synaptics TouchPad" 
...
⎜   ↳ SynPS/2 Synaptics TouchPad                id=11   [slave  pointer  (2)]
    Reporting 8 classes:
        Class originated from: 11. Type: XIButtonClass
        Buttons supported: 12
        Button labels: "Button Left" "Button Middle" "Button Right" "Button Wheel Up" "Button Wheel Down" "Button Horiz Wheel Left" "Button Horiz Wheel Right" None None None None None
        Button state:
        Class originated from: 11. Type: XIValuatorClass
        Detail for Valuator 0:
          Label: Rel X
          Range: 1472.000000 - 5888.000000
          Resolution: 75000 units/m
          Mode: relative
        Class originated from: 11. Type: XIValuatorClass
        Detail for Valuator 1:
          Label: Rel Y
          Range: 1408.000000 - 4820.000000
          Resolution: 105000 units/m
          Mode: relative
        Class originated from: 11. Type: XIValuatorClass
        Detail for Valuator 2:
          Label: Rel Horiz Scroll
          Range: 0.000000 - -1.000000
          Resolution: 0 units/m
          Mode: relative
        Class originated from: 11. Type: XIValuatorClass
        Detail for Valuator 3:
          Label: Rel Vert Scroll
          Range: 0.000000 - -1.000000
          Resolution: 0 units/m
          Mode: relative
    ...

OK, ótimo, mas como desativar um botão?

Se você der uma olhada na página man do xinput , verá a seguinte pista:

$ man xinput
...
   --set-button-map device map_button_1 [map_button_2 [...]]
        Change the button mapping of device. The buttons are specified 
        in physical order (starting with button 1) and  are  mapped  to
        the logical button provided. 0 disables a button. The default 
        button mapping for a device is 1 2 3 4 5 6 etc.
...

Então, se você tomar nota de qual botão é o que deseja desabilitar usando o xinput list --long "SynPS/2 Synaptics TouchPad" , você pode fazer o seguinte, caso queira desativar o botão # 5.

$ xinput set-button-map "SynPS/2 Synaptics TouchPad" 1 2 3 4 0 6 7 8 9 10 11 12

OBSERVAÇÃO: No exemplo acima, "SynPS/2 Synaptics TouchPad" também pode ser substituído por 11 , já que esse é o ID dessa entrada específica, portanto, é o mesmo acima:

$ xinput set-button-map 11 1 2 3 4 0 6 7 8 9 10 11 12

Dica nos nomes dos dispositivos

Na saída de xinput list você deve ter notado uma coluna com as strings id=# .

$ xinput list
⎡ Virtual core pointer                      id=2    [master pointer  (3)]
⎜   ↳ Virtual core XTEST pointer                id=4    [slave  pointer  (2)]
⎜   ↳ Logitech Unifying Device. Wireless PID:4013   id=9    [slave  pointer  (2)]
⎜   ↳ SynPS/2 Synaptics TouchPad                id=11   [slave  pointer  (2)]
⎜   ↳ TPPS/2 IBM TrackPoint                     id=12   [slave  pointer  (2)]

Esses IDs podem ser usados em vez da longa e irritante string: "SynPS / 2 Synaptics TouchPad".

$ xinput list-props 11
    
por 23.09.2014 / 02:58