Added script to randomly move the input pointer

This commit is contained in:
Michele Cereda
2022-09-22 11:52:31 +02:00
parent 068c4320bb
commit 818ed17afe

View File

@@ -0,0 +1,13 @@
#!/usr/bin/env python3
import pyautogui
import random
import time
try:
while True:
for i in range(1, random.randint(1, 9), 1):
pyautogui.moveRel(random.randint(-100, 100), random.randint(-100, 100))
time.sleep(random.random())
time.sleep(random.randint(1, 4))
except KeyboardInterrupt: pass