This is a command-line time-tracking tool that allows you to manually or automatically time-track your activity.
cargo install track-time
In order to manually start time-tracking:
track-time start --project <project_name>
To stop time-tracking:
track-time stop --project <project_name>
Preview:
In order to automatically time-track activity for a path:
track-time watch --project <project_name> --path <folder_path>
Watcher flags user as inactive after a timeout period. Timeout time unit is in seconds, and the amount can be changed in
root Config.toml
file.
Preview:
This functionality is based on filesystem notification crate notify.
You can preview your projects and see total time for a single project.
To preview all projects:
track-time projects
To preview tracked time of a project:
track-time show --project <project_name>
Preview:
```
Started (UTC) Stopped (UTC) Duration (min)
Total: 50 min ```