我希望能够在 X 显示屏上显示指针的当前位置。有没有什么应用程序可以做到这一点?
答案1
有一个名为的软件包,xdotool
其中有一个名为的应用程序getmouselocation
,可从 ubuntu 存储库中使用sudo apt-get install xdotool
。运行命令
xdotool getmouselocation
将输出
x:1285 y:10 screen:0
答案2
- 安装 xdotool
打开终端并粘贴以下内容:
while true; do clear; xdotool getmouselocation; sleep 0.1; done
将光标移到屏幕上,您将看到终端上的实时坐标更新。
答案3
答案4
虽然不是原生的 Linux 解决方案,但如果你安装了 Wine,小精灵是一个免费的(就像啤酒一样)小应用程序,它将以多种格式显示光标的坐标及其正下方像素的颜色。