最近、4 GB RAMを搭載したDell vostro 3400 i3を購入しました。すべてがシルクのようにスムーズに動作し、マーベリックを使用していますが、2本の指でスクロールしたり、ズームなどの複数のジェスチャーでサポートされているとは言えません。誰か助けてもらえますか? gsynapticsをインストールしてスクロールを有効にしましたが、機能しません。
私の東芝U400にも同じ問題があります。インストールgpointing-device-settingsも機能しませんでしたが、少なくともそれを有効にするオプションは淡色表示されていませんでした。
最後に、私はこれを見つけました forum post 、これはこの小さなシェルスクリプトを強調表示しました:
#!/bin/bash
#
# list of synaptics device properties http://www.x.org/archive/X11R7.5/doc/man/man4/synaptics.4.html#sect4
# list current synaptics device properties: xinput list-props '"AlpsPS/2 ALPS GlidePoint"'
#
sleep 5 #added delay...
xinput --set-prop --type=int --format=32 "AlpsPS/2 ALPS GlidePoint" "Synaptics Two-Finger Pressure" 125
xinput --set-prop --type=int --format=32 "AlpsPS/2 ALPS GlidePoint" "Synaptics Two-Finger Width" 0 # Below width 1 finger touch, above width simulate 2 finger touch. - value=pad-pixels
xinput --set-prop --type=int --format=8 "AlpsPS/2 ALPS GlidePoint" "Synaptics Two-Finger Scrolling" 1 0 # vertical scrolling, horizontal scrolling - values: 0=disable 1=enable
exit
ただし、一部のモデルでは機能しますが、他のモデルでは機能しません。幸運を。