Skip to content

Instantly share code, notes, and snippets.

@aerphanas
Forked from HaydenElza/AutoClicker.sh
Last active June 28, 2022 11:37
Show Gist options
  • Select an option

  • Save aerphanas/990229707a2c1f0f4818108e3b1642c2 to your computer and use it in GitHub Desktop.

Select an option

Save aerphanas/990229707a2c1f0f4818108e3b1642c2 to your computer and use it in GitHub Desktop.
Auto-Clicker using xdotool on linux
COUNTER=0
while true; do
xdotool click 1
sleep 0.001s
echo chicked $COUNTER
let COUNTER=COUNTER+1
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment