如何在VirtualBox上使用xev来捕获鼠标事件

时间:2014-02-19 16:26:50

标签: linux ubuntu listener virtualbox xorg

我试图在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

任何人都知道我错过了什么?

0 个答案:

没有答案