File tree Expand file tree Collapse file tree 3 files changed +29
-0
lines changed Expand file tree Collapse file tree 3 files changed +29
-0
lines changed Original file line number Diff line number Diff line change 1+ # Auto Cursor Mover
2+
3+ - Periodically moves cursor to prevent system from sleeping.
4+ - Trick the monitoring software installed on your work PC into thinking you're working.
5+ - program will run until manually stopped.
6+
7+ ## Setup instructions
8+
9+ - run ` pip install --requirement requirements.txt ` to install required dependancies.
10+
11+ ## Usage
12+
13+ - run ` python auto_cursor_mover.py `
14+ - press ` ctrl+c ` when you want to stop execution
Original file line number Diff line number Diff line change 1+ import pyautogui
2+ import time
3+
4+ while True :
5+ pyautogui .moveRel (0 , 8 )
6+ time .sleep (5 )
Original file line number Diff line number Diff line change 1+ MouseInfo == 0.1.3
2+ PyAutoGUI == 0.9.53
3+ PyGetWindow == 0.0.9
4+ PyMsgBox == 1.0.9
5+ pyperclip == 1.8.2
6+ PyRect == 0.2.0
7+ PyScreeze == 0.1.28
8+ python3-xlib == 0.15
9+ pytweening == 1.0.4
You can’t perform that action at this time.
0 commit comments