我正在尝试在我的 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
AskUbuntu 上的这个答案帮助了我。
您基本上需要执行以下操作:
在目录
/usr/share/X11/xorg.conf.d
中找到类似的文件*-libinput.conf
(在我的情况下,它是40-libinput.conf
)。在任何文本编辑器中打开它并找到
Section "InputClass"
withIdentifier "libinput touchpad catchall"
在本节中,添加以下行:
Option "DisableWhileTyping" "false"
重启你的电脑。