X設定はデバイスに適用されませんか?

X設定はデバイスに適用されませんか?

私は持っています構成ファイル私はインストール中です/usr/share/X11/xorg.conf.d/52-synaptics-bcm5974.conf

Section "InputClass"
  Identifier      "MacBook Pro Touchpad"
  MatchUSBID      "05ac:0272"
  MatchUSBID      "05ac:0273"
  MatchUSBID      "05ac:0274"
  MatchIsTouchpad "on"
  Driver          "synaptics"

  # lookup options here: http://linux.die.net/man/5/synaptics

  # detect your palm over the trackpad and disable while typing
  Option "PalmDetect" "1"

  # require actual clicks, no tapping!
  Option "TapButton1" "0"
  Option "TapButton2" "0"

  # disable edge scrolling
  Option "VertEdgeScroll"  "0"
  Option "HorizEdgeScroll" "0"

  # don't do corner taps for things
  Option "RTCornerButton"  "0"
  Option "RBCornerButton"  "0"

  # raise the minimum and maximum tracking speeds
  Option "MinSpeed" "1.2"
  Option "MaxSpeed" "1.85"
EndSection

このデバイスで提供されているカーネルドライバはbcm5974シナプティクスドライバを使用すると予想していましたが、実際にはそうです。以下は、構成ディレクトリ内の他のファイルです。

10-evdev.conf
10-quirks.conf
11-evdev-quirks.conf
11-evdev-trackpoint.conf
50-synaptics.conf
50-vmmouse.conf
50-wacom.conf
51-synaptics-quirks.conf
52-synaptics-bcm5974.conf

これは50-synaptics.conf「さまざまな」設定ファイルです。

Section "InputClass"
        Identifier "touchpad catchall"
        Driver "synaptics"
        MatchIsTouchpad "on"
# This option is recommend on all Linux systems using evdev, but cannot be
# enabled by default. See the following link for details:
# http://who-t.blogspot.com/2010/11/how-to-ignore-configuration-errors.html
      MatchDevicePath "/dev/input/event*"
EndSection

Section "InputClass"
        Identifier "touchpad ignore duplicates"
        MatchIsTouchpad "on"
        MatchOS "Linux"
        MatchDevicePath "/dev/input/mouse*"
        Option "Ignore" "on"
EndSection

設定ファイルの優先順位が高いため、設定したい特定のデバイスで使用されているとします。

しかし、私のデバイスはそれ自体正しく設定されていないため、汎用ドライバによってキャプチャされているようです。出力を見て関数synclientを観察すると、私の設定は尊重されません。 (たとえば、RTCornerButton右隅のクリックは無効にする必要がありますが、そうではありません。)

ここで何か抜けましたか?自分のデバイスにどの設定が適用されるかをデバッグする方法はありますか?

ベストアンサー1

おすすめ記事