Created
May 24, 2012 17:25
-
-
Save vitorbaptista/2782920 to your computer and use it in GitHub Desktop.
Infinite Google Hangouts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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