什么是韦兰等价于 xinput 列表?

lof*_*ops 12 x11 wayland libinput

我在 Wayland 桌面会话中为 /dev/uinput 设备运行用户空间驱动程序。说明建议运行xinput list以确认检测到设备。

当然,xinput 是一个 X.org 应用程序。Wayland 的等效命令是什么?(一个 GNOME GUI 等价物是可以接受的。)

GAD*_*D3R 12

On Debian the command is:

$ sudo libinput list-devices
# requires the libinput-tools package
Run Code Online (Sandbox Code Playgroud)

On arch-linux:

# libinput list-devices
Run Code Online (Sandbox Code Playgroud)

To list just the device names, no details, use grep:

$ sudo libinput list-devices | grep Device
Run Code Online (Sandbox Code Playgroud)