mirror of
https://gitea.com/mcereda/oam.git
synced 2026-02-09 05:44:23 +00:00
Added script to randomly move the input pointer
This commit is contained in:
13
scripts/randomly-move-ui-pointer.py
Executable file
13
scripts/randomly-move-ui-pointer.py
Executable 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
|
||||
Reference in New Issue
Block a user