Answers:
尝试以下命令:
xdotool getmouselocation 2>&1 |
sed -rn '${s/x:([0-9]+) y:([0-9]+) .*/\1 \2/p}'
xinput是另一种选择。例如,xinput test 8
会写
motion a[0]=496 a[1]=830
motion a[0]=496 a[1]=829
motion a[0]=496 a[1]=832
motion a[0]=496 a[1]=834
鼠标移动时,“ 8”是我的鼠标设备编号。使用xinput --list
找出你的鼠标设备之间的数字。