Ubuntu 完全忽略了我的 xorg.d 设置

Ubuntu 完全忽略了我的 xorg.d 设置

我已经谈过了我的笔记本电脑的触摸板别处...

HP G42 触摸板

鉴于其触摸板的位置和配置,您可以在打字时触发二次和三次点击,因为它们绑定到左上角和左下角*。

我知道如何解决这个问题(**,***),我有这个:

# Example xorg.conf.d snippet that assigns the touchpad driver
# to all touchpads. See xorg.conf.d(5) for more information on
# InputClass.
# DO NOT EDIT THIS FILE, your distribution will likely overwrite
# it when updating. Copy (and rename) this file into
# /etc/X11/xorg.conf.d first.
# Additional options may be added in the form of
#   Option "OptionName" "value"
#
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 "LTCornerButton" "0"
        Option "LBCornerButton" "0"
        Option "Ignore" "on"
EndSection

# This option enables the bottom right corner to be a right button on
# non-synaptics clickpads.
# This option is only interpreted by clickpads.
Section "InputClass"
        Identifier "Default clickpad buttons"

在我的/usr/share/X11/xorg.conf.d/50-synaptics.conf文件中。它应该像设置这些选项一样工作同步客户端但是 ubuntu 出于某种原因认为我更了解并且无法覆盖该设置。

为什么?最重要的是,我该如何解决这个问题?

另外:这个问题可能与X11 忽略输入设备配置中的选项但这个解决方案很糟糕。我不会这么做,但我应该把这个作为评论发布吗?

*:它们总是在最糟糕的时候被触发,就像,一直这样。足以让我发疯……

**:X.org 配置文件在哪里?如何在那里配置 X?

***http://www.x.org/archive/X11R7.5/doc/man/man4/synaptics.4.html

答案1

我在 Linux Mint 15 上遇到了同样的问题。请尝试此链接上的解决方案。它对我有用:https://askubuntu.com/a/122589/165847

相关内容