Start Linux Leave Linux a while Back to Linux
分类: 其他平台
2022-12-28 11:23:40
使用 xinput 时会提示:
WARNING: running xinput against an Xwayland server. See the xinput man page for details.
这是因为 ubuntu 22 默认使用了 Wayland 模式,导致 /etc/X11/xorg.conf.d/40-libinput.conf 不起作用。
sudo vim/etc/gdm3/custom.conf
進去把WaylandEnable=true改成false, 保存重啟即可。
sudo vim /etc/X11/xorg.conf.d/40-libinput.conf
Section "InputClass"
Identifier "libinput touchscreen catchall"
Option "CalibrationMatrix" "-1 0 1 0 -1 1 0 0 1"
MatchIsTouchscreen "on"
MatchDevicePath "dev/input/event*"
Driver "libinput"
EndSection
保存重啟即可。