Checktimer is a simple manual time tracking application. It allows the user to enter the current activity and saves all the activity to a CSV file (as configured).
To run checktimer, install Java 21 or newer.
-
Download the package for your operating system from the Releases page.
Note that there are two kinds of packages: JVM-dependent (with
.jvmsuffix) and JVM-independent (that bring their own JVM, without the.jvmsuffix). -
Unpack the archive.
-
If you have downloaded a JVM-dependent package, make sure the Java 21 instance is active (e.g., by running
java --versionand inspecting the output in the shell). -
For a JVM-dependent package, use
checktimer-<version>/bin/checktimerorchecktimer.batscript.For a JVM-independent package, use
checktimer/checktimer.exeexecutable file.
The only command line argument is the path to the configuration file (see below). If no argument is provided, the application will try to read the configuration from ~/checktimer.cfg file, where ~ is a notation for your user's home directory (USERPROFILE on Windows, HOME on others).
For instructions on how to build and run the application from sources, see the Contributor Guide.
Here's the configuration file example:
database: "/home/user/checktimer.csv" # path to the data storage
Checktimer uses tinylog 2 logging framework. By default, it will write logs to <temp folder>/checktimer/ directory, and to the standard output. It is possible to override the logging parameters, see the logging documentation page for details.
The data file has CSV format of the following columns:
# Start datetime in ISO-8601 format,Duration,Project,Activity
2020-01-01T01:00:00.999Z,6:50:46,My Project,My current activity
The project is distributed under the terms of the MIT license.
The license indication in the project's sources is compliant with the REUSE specification v3.3.
