鼠标和触控板设置中没有“键入时禁用触摸板”复选框

鼠标和触控板设置中没有“键入时禁用触摸板”复选框

我在配有 Elantech 触摸板的 Gigabyte Aero 上运行 Ubuntu 16.04 LTS。xinput 的输出如下:

david@Aero:~$ xinput
⎡ Virtual core pointer                      id=2    [master pointer  (3)]
⎜   ↳ Virtual core XTEST pointer                id=4    [slave  pointer  (2)]
⎜   ↳ Bluetooth Mouse M557                      id=12   [slave  pointer  (2)]
⎜   ↳ E-Signal Keyboard                         id=14   [slave  pointer  (2)]
⎜   ↳ ETPS/2 Elantech Touchpad                  id=17   [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)]
    ↳ Sleep Button                              id=9    [slave  keyboard (3)]
    ↳ Power Button                              id=10   [slave  keyboard (3)]
    ↳ Sleep Button                              id=11   [slave  keyboard (3)]
    ↳ E-Signal Keyboard                         id=13   [slave  keyboard (3)]
    ↳ Chicony USB 2.0 Camera                    id=15   [slave  keyboard (3)]
    ↳ AT Translated Set 2 keyboard              id=16   [slave  keyboard (3)]

编辑:触摸板上 xinput 的详细信息:

david@Aero:~$ xinput list-props 17
Device 'ETPS/2 Elantech Touchpad':
    Device Enabled (168):   1
    Coordinate Transformation Matrix (170): 1.000000, 0.000000, 0.000000, 0.000000, 1.000000, 0.000000, 0.000000, 0.000000, 1.000000
    Device Accel Profile (296): 1
    Device Accel Constant Deceleration (297):   2.500000
    Device Accel Adaptive Deceleration (298):   1.000000
    Device Accel Velocity Scaling (299):    12.500000
    Synaptics Edges (326):  127, 3061, 112, 1973
    Synaptics Finger (327): 1, 1, 0
    Synaptics Tap Time (328):   180
    Synaptics Tap Move (329):   167
    Synaptics Tap Durations (330):  180, 100, 100
    Synaptics ClickPad (331):   1
    Synaptics Middle Button Timeout (332):  0
    Synaptics Two-Finger Pressure (333):    282
    Synaptics Two-Finger Width (334):   7
    Synaptics Scrolling Distance (335): 76, 76
    Synaptics Edge Scrolling (336): 0, 0, 0
    Synaptics Two-Finger Scrolling (337):   1, 1
    Synaptics Move Speed (338): 1.000000, 1.750000, 0.052507, 0.000000
    Synaptics Off (339):    1
    Synaptics Locked Drags (340):   0
    Synaptics Locked Drags Timeout (341):   5000
    Synaptics Tap Action (342): 2, 3, 0, 0, 1, 3, 0
    Synaptics Click Action (343):   1, 3, 0
    Synaptics Circular Scrolling (344): 0
    Synaptics Circular Scrolling Distance (345):    0.100000
    Synaptics Circular Scrolling Trigger (346): 0
    Synaptics Circular Pad (347):   0
    Synaptics Palm Detection (348): 0
    Synaptics Palm Dimensions (349):    10, 200
    Synaptics Coasting Speed (350): 20.000000, 50.000000
    Synaptics Pressure Motion (351):    30, 160
    Synaptics Pressure Motion Factor (352): 1.000000, 1.000000
    Synaptics Resolution Detect (353):  1
    Synaptics Grab Event Device (354):  0
    Synaptics Gestures (355):   1
    Synaptics Capabilities (356):   1, 0, 0, 1, 1, 1, 1
    Synaptics Pad Resolution (357): 31, 31
    Synaptics Area (358):   0, 0, 0, 0
    Synaptics Soft Button Areas (359):  1594, 0, 1709, 0, 0, 0, 0, 0
    Synaptics Noise Cancellation (360): 19, 19
    Device Product ID (285):    2, 14
    Device Node (286):  "/dev/input/event8"

Gnome(通过 gnome-settings-daemon?)在登录时启动 syndaemon 实例:

david@Aero:~$ ps aux | grep syndaemon | grep -v grep
david     4275  0.0  0.0  22372  1164 ?        S    08:35   0:00 syndaemon -i 1.0 -t -K -R

但是“-t”选项在我的计算机上存在问题。如果我使用我喜欢的选项 ( )killall syndaemon重新运行它,它会运行良好。不幸的是,将我的启动应用程序的命令设置为实际上并没有终止 Gnome 的实例,可能是因为启动应用程序在 Gnome 运行其实例之前运行。-i 1.5 -K -dkillall syndaemon && syndaemon ...

禁用 Gnome 登录时启动的 syndaemon 实例的普遍接受的方法是“在鼠标和触控板设置中取消选中‘键入时禁用’选项” - 但对我来说,该选项没有出现。我猜这是因为我没有 Synaptics 触控板?

鼠标和触摸板设置的屏幕截图

(我还有另一台笔记本电脑,是三星 9 系列,配有 Elantech 触摸板,运行 14.04LTS,显示复选框。

因此我需要下列之一:

  • 无需取消选中该框即可禁用 Gnome 登录时启动 syndaemon 的方法,或者
  • 有没有什么方法可以让这个框出现,以便我可以取消选中它?

谢谢!

答案1

我找到了一个可用的解决方法,但仍然有兴趣了解是否有“正确”的方法来做到这一点......

我将其重命名/usr/bin/syndaemon/usr/bin/syndaemon.priv并在启动应用程序命令行中调用了后者。Gnome 找不到原始 syndaemon 可执行文件,因此调用失败。

答案2

如果您安装了touchpad-indicator,它具有在打字时禁用触摸板的功能,以及许多您可以配置的设置。

如果您在 Synaptic 中没有看到touchpad-indicator,您可以访问https://www.atareao.es/apps/touchpad-indicator-para-ubuntu/以获取更多信息。

您还可以通过在终端中输入以下命令来添加他的存储库:

sudo add-apt-repository ppa:atareao/atareao

sudo apt-get update

sudo apt-get install touchpad-indicator

干杯,艾尔

相关内容