web-dev-qa-db-ja.com

新しいThinkpadタッチパッドで「タッチ」を無効にする方法は?

最近、タッチパッドが1つの大きなボタンであるLenovo ThinkpadT440sを購入しました。このマシンでUbuntu13.10を試しています。

クリックを無効にせずにタッチパッドの「タッチ」を無効にするにはどうすればよいですか?カーソルの移動にはトラックポイントを使用し、クリックにはタッチパッドを使用したいと思います。

これが私がxinput listで見るものです:

ubuntu@ubuntu:~$ xinput list
⎡ Virtual core pointer                      id=2    [master pointer  (3)]
⎜   ↳ Virtual core XTEST pointer                id=4    [slave  pointer  (2)]
⎜   ↳ SynPS/2 Synaptics TouchPad                id=11   [slave  pointer  (2)]
⎜   ↳ TPPS/2 IBM TrackPoint                     id=13   [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)]
    ↳ Video Bus                                 id=8    [slave  keyboard (3)]
    ↳ Integrated Camera                         id=9    [slave  keyboard (3)]
    ↳ AT Translated Set 2 keyboard              id=10   [slave  keyboard (3)]
    ↳ ThinkPad Extra Buttons                    id=12   [slave  keyboard (3)]

やった:

/etc/X11/xorg.conf.d/50-synaptics.conf

Section "InputClass"
        Identifier "Default clickpad buttons"
        MatchDriver "synaptics"
        Option "SoftButtonAreas" "60% 0 0% 25% 40% 60% 0% 25%"
        Option "AreaBottomEdge" "0%"
EndSection
4
user1501961

あなたが置くことができます:

Section "InputClass"
    Identifier "t440 top buttons"
    MatchDriver "synaptics"
    Option "SoftButtonAreas" "60% 0 0 0 40% 60% 0 0" #Emulate right and midle buttons
    Option "Synaptics Area" "0 0 0 1" #disable moving but not buttons
EndSection

/etc/X11/xorg.conf.d/99-t440-synaptics.conf内

右ボタンと中央ボタンをエミュレートするための私のソースはここにあります: http://who-t.blogspot.fr/2013/12/lenovo-t440-touchpad-button.html

私はまだ真ん中のボタンとスクロール用のトラックポイントを組み合わせるソリューションを探しています:(

2
user293460

Archパッチを取り、それをdebianパッケージに適用し、Ubuntu(Mint)にインストールしました。トラックポイントのスクロールだけでなく、問題も解決します。

https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-input-evdev/+bug/1246683/comments/4

0
dalcde