如何使用 bash 读取鼠标移动数据

如何使用 bash 读取鼠标移动数据

是否有一个库可用于读取鼠标移动并传递某些热键组合或在某些移动时触发某些文件?

我想要制作能够响应鼠标移动的功能,例如三指触摸拖动可以触发窗口展开。

答案1

你可以使用xdotool如下命令:

xdotool getmouselocation

您既可以将其watch xdotool getmouselocation用于交互式轮询,也可以将其用于 bash 脚本 - 编写一个无限的 while 循环。

while true
do
     xdotool getmouselocation
done

相关内容