aclicky-doclicks: reduce wait time

This commit is contained in:
Josh Holtrop 2022-06-04 18:57:14 -04:00
parent f89a5e9624
commit 783a9fc3d4

View File

@ -8,6 +8,6 @@ points.each_line do |line|
x, y = $1, $2 x, y = $1, $2
Open3.capture3("xdotool mousemove #{x} #{y}") Open3.capture3("xdotool mousemove #{x} #{y}")
Open3.capture3("xdotool click 1") Open3.capture3("xdotool click 1")
sleep(0.2) sleep(0.1)
end end
end end