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,我希望它使用 synaptics 驅動程序,而它確實如此。以下是該配置目錄中的其他檔案:

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應該禁用右角單擊,但事實並非如此)

我在這裡缺少什麼嗎?有沒有辦法調試哪些配置應用於我的設備?

相關內容