A simple Windows Forms app that prevents your machine from going idle by moving the mouse slightly at configurable intervals.
- System tray support
- Start/Stop toggle
- Interval slider (1–30 seconds)
- Zen mode (invisible movement)
- Minimizes to tray
- .ico support for tray and taskbar
- .NET 9.0 (or compatible Windows runtime)
- Windows 10 or later
- Download the EXE from the releases or build it yourself:
dotnet publish -c Release -r win-x64 --self-contained true -o ./publish - Run the EXE.
- Configure interval and mode as needed.
- Minimize to keep it in the tray.
- Start: Start jiggling
- Stop: Stop jiggling
- Beenden: Exit the app
To create a single-file, portable EXE:
dotnet publish -c Release -r win-x64 --self-contained true -p:PublishSingleFile=true -o ./publishNo installer needed – copy to USB or any folder and run.
This repo includes a GitHub Actions workflow that:
- Builds on push and PR
- Publishes self-contained Win64 build
- Can upload artifacts
MIT