当前位置: 首页 > 工具软件 > xdotool > 使用案例 >

xdotool按键精灵

马峻
2023-12-01

一、下载

sudo apt-get install xdotool

二、运行脚本

sh 脚本.sh

三、捕获鼠标当前位置

捕获鼠标当前位置并循环点击

#!/bin/bash
while true
do
	x=`xdotool getmouselocation | awk -F '[a-z]:+' '{printf $2}'`
	y=`xdotool getmouselocation | awk -F '[a-z]:+' '{printf $3}'`
	xdotool mousemove $x $y;xdotool click 1
	sleep 3
done

四、交替点击屏幕位置

#!/bin/bash
while true
do
	x=1500
	xx=2500
	y=500
	xdotool mousemove $x $y;xdotool click 1
	sleep 3
	xdotool mousemove $xx $y;xdotool click 1
	sleep 3
done
 类似资料: