Very simple application that automatically moves mouse in the screen (every 5 seconds by default). This is useful if you want to prevent the computer to lock screen or run screen saver. This movement activity is suppressed for some time (30 seconds by default) if user moves mouse manually.
Multi-screen configuration is supported.
By default, mouse is moving to the right direction by 5 pixels. After each movement direction is changed to opposite.
You may change default setting using command line arguments.
To get help about supported arguments, run application with -h
option.
To build application you have to have installed JDK 8 or higher and Maven 3.3 or higher:
mvn clean package
To run this app you have to have installed JDK or JRE 8 or higher:
target/mouse-mover.exe
Or:
java -jar target/mouse-mover.jar
To run app with logging just put path to debug.properties file
to java.util.logging.config.file
Java system variable, e.g:
java -Djava.util.logging.config.file=log/debug.properties -jar target/mouse-mover.jar