タッチパッド設定

debian gnomeではlibinputを利用しているらしい

/usr/share/X11/xorg. conf.d/40-libinput.conf

に設定がある
LetsNoteホイールパッドの回転スクロールを使いたいときは、libinputでなく、synapticsをインストールして使う

# apt install xserver-xorg-input-synaptics

インストールすると70-synaptics.confができるので
これをコピーしてリネーム71-*****.conf(数字を大きくすると優先される)、こちらで設定する

/usr/share/X11/xorg. conf.d/71-*****.conf
Section "InputClass"
    Identifier "touchpad"
    Driver "synaptics"
    MatchIsTouchpad "on"
        ...
        Option "CircularScrolling" "on"
        Option "CircScrollTrigger" "0"
        ...
EndSection

とする

ついでにスピードは

        Option "MaxSpeed" "0.3"

とした