
Python script that moves the mouse after a set inactivity timeout.
Requirements
- MacOS with Python3.9+
- Packages: see `requirements.txt`
Installation
Using Pip
bash
mkdir infinity-mouse
cd infinity-mouse && python3 -m venv .venv/ && source .venv/bin/activate
pip install infinity-mouse
Run the script
infinity-mouse You may need to allow system access permissions for your terminal app
Press CTRL+C to exit the script
Using Source
bash
git clone https://github.com/mqxym/infinity-mouse
cd infinity-mouse && python3 -m venv .venv/ && source .venv/bin/activate && pip install -r requirements.txt
Run the script
python run.py You may need to allow system access permissions for your terminal app
Press CTRL+C to exit the script
Options
bash
Run the script with random min-max timeout in seconds
infinity-mouse 80-120
Test the script
infinity-mouse --test
View options
infinity-mouse -h
Future Additions
- Linux and Windows support?