Created
March 21, 2017 17:46
-
-
Save KarimJedda/6323cf43f8258cddbb44b28d5c7f11a7 to your computer and use it in GitHub Desktop.
No sleep mode for mac
This file contains hidden or 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
import pyautogui | |
import time | |
import random | |
screenWidth, screenHeight = pyautogui.size() | |
currentMouseX, currentMouseY = pyautogui.position() | |
while True: | |
pyautogui.moveTo(random.randint(1, 1000), random.randint(1, 500)) | |
time.sleep(20) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment