我试图在xev
上使用VirtualBox
创建一个鼠标监听器。
我知道根据 x.org ,我需要配置鼠标标识符才能让xev
听取它。
我发现需要在xorg.conf
创建/etc/X11/
并且默认配置位于/usr/lib/X11/xconf.d/
xev
测试窗口显示单击鼠标按钮时的按钮按下事件。
我想用预定义的Windows ID实现同样的目的。
这是我xorg.conf
目前的一个例子(/etc/X11/xorg.conf
)
Section "Device"
Identifier "Configured Video Device"
Driver "vesa"
EndSection
Section "Monitor"
Identifier "Configured Monitor"
EndSection
Section "Screen"
Identifier "Default Screen"
Monitor "Configured Monitor"
Device "Configured Video Device"
EndSection
Section "InputDevice"
Identifier "Configured Mouse"
Driver "vboxmouse"
#Driver "evdev"
Option "CorePointer"
#Option "Device" "/sys/devices/virtual/input/input2"
#Option "Device" "/dev/input/event*"
EndSection
任何人都知道我错过了什么?