Skip to content

Commit 69c6274

Browse files
authored
Merge pull request #914 from dude-with-the-long-username/auto_cursor_mover
✨ feat: add auto cursor mover script
2 parents 6d4c8c7 + dea3424 commit 69c6274

File tree

3 files changed

+29
-0
lines changed

3 files changed

+29
-0
lines changed

auto_cursor_mover/README.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
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
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
import pyautogui
2+
import time
3+
4+
while True:
5+
pyautogui.moveRel(0, 8)
6+
time.sleep(5)

auto_cursor_mover/requirements.txt

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
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

0 commit comments

Comments
 (0)