Skip to content

Instantly share code, notes, and snippets.

@vitorbaptista
Created May 24, 2012 17:25
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vitorbaptista/2782920 to your computer and use it in GitHub Desktop.
Save vitorbaptista/2782920 to your computer and use it in GitHub Desktop.
Infinite Google Hangouts
#!/bin/sh
# Change this to the button coordinates.
# To discover it, wait for it to appear, open a terminal,
# put the cursor over it and run "xdotool getmouselocation".
BUTTON_COORDINATES="300 800"
while (true)
do
xdotool mousemove $BUTTON_COORDINATES click 1 \
mousemove 0 0
sleep 60
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment