web-dev-qa-db-fra.com

Comment désactiver le trackpad de mon MacBook Pro à l'aide de syndaemon?

J'essaye d'exécuter syndaemon -i 2 -t -d pour désactiver le trackpad lors de la frappe (détaillé dans https://help.ubuntu.com/community/MacBookPro7-1/Maverick ). Cependant, je reçois

No synaptics properties on device 'bcm5974'.

Ce qui est bizarre car j'ai suivi toutes les étapes du guide. Mon xorg.conf est:

Section "ServerLayout"
    Identifier     "Layout0"
    Screen      0  "Screen0"
    InputDevice    "Keyboard0" "CoreKeyboard"
    InputDevice    "Mouse0" "CorePointer" EndSection

Section "Files" EndSection

Section "InputDevice"
    # generated from default
    Identifier     "Mouse0"
    Driver         "mouse"
    Option         "Protocol" "auto"
    Option         "Device" "/dev/psaux"
    Option         "Emulate3Buttons" "no"
    Option         "ZAxisMapping" "4 5" EndSection

Section "InputDevice"
    # generated from default
    Identifier     "Keyboard0"
    Driver         "kbd" EndSection

Section "Monitor"
    Identifier     "Monitor0"
    VendorName     "Unknown"
    ModelName      "Unknown"
    HorizSync       28.0 - 33.0
    VertRefresh     43.0 - 72.0
    Option         "DPMS" EndSection

Section "Device"
    Identifier     "Device0"
    Driver         "nvidia"
    VendorName     "NVIDIA Corporation" EndSection

Section "Screen"
    Identifier     "Screen0"
    Device         "Device0"
    Monitor        "Monitor0"
    DefaultDepth    24
    SubSection     "Display"
        Depth       24
    EndSubSection EndSection

Section "InputClass"
    MatchIsTouchpad "true"
    Identifier "Multitouch Touchpad"
    Driver "multitouch"
    MatchDevicePath "/dev/input/event*" EndSection
3
disappearedng

Vous devriez pouvoir contrôler ce comportement directement à partir du panneau de configuration Mouse. Sur la page Touchpad, il devrait y avoir un Disable touchpad while typing option qui fait ce que vous voulez.

1
James Henstridge

Vous pouvez utiliser dispad pour désactiver le pavé tactile lors de la frappe. Ça marche pour moi.

0
cweiske