无法同时使用 Macbook Air 的键盘和触控板

无法同时使用 Macbook Air 的键盘和触控板

我尝试在 Macbook Air 笔记本电脑和 Debian 9 Stretch 上玩一些游戏,但我的键盘和触控板无法同时工作。此问题的解决方案提到使用 更改键盘属性xinput。问题是,我的键盘/触控板没有任何与之相关的属性,即“打字时禁用”。

xinput输出:

$ xinput
⎡ Virtual core pointer                      id=2    [master pointer  (3)]
⎜   ↳ Virtual core XTEST pointer                id=4    [slave  pointer  (2)]
⎜   ↳ bcm5974                                   id=11   [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)]
    ↳ Power Button                              id=8    [slave  keyboard (3)]
    ↳ Sleep Button                              id=9    [slave  keyboard (3)]
    ↳ Apple Inc. Apple Internal Keyboard / Trackpad id=10   [slave  keyboard (3)]
$ xinput --list-props 10
Device 'Apple Inc. Apple Internal Keyboard / Trackpad':
    Device Enabled (139):   1
    Coordinate Transformation Matrix (141): 1.000000, 0.000000, 0.000000, 0.000000, 1.000000, 0.000000, 0.000000, 0.000000, 1.000000
    libinput Send Events Modes Available (261): 1, 0
    libinput Send Events Mode Enabled (262):    0, 0
    libinput Send Events Mode Enabled Default (263):    0, 0
    Device Node (264):  "/dev/input/event1"
    Device Product ID (265):    1452, 657
$ sudo xinput --list --long "Apple Inc. Apple Internal Keyboard / Trackpad"
Apple Inc. Apple Internal Keyboard / Trackpad   id=10   [slave  keyboard (3)]
    Reporting 1 classes:
        Class originated from: 10. Type: XIKeyClass
        Keycodes supported: 248

答案1

这个答案AskUbuntu 帮助了我。

您基本上需要执行以下操作:

  1. 在目录中/usr/share/X11/xorg.conf.d找到名为类似的文件*-libinput.conf(在我的例子中,它是40-libinput.conf)。

  2. 在任何文本编辑器中打开它并Section "InputClass"找到Identifier "libinput touchpad catchall"

  3. 在此部分中,添加以下行:Option "DisableWhileTyping" "false"

  4. 重启你的电脑。

相关内容