Tasklog is a simple CLI-based task management tool written in Rust. It allows you to start, stop, switch between tasks, generate reports of your tasks, and more. This tool is useful for tracking time spent on various tasks throughout the day.
- Start a Task: Begin a new task.
- Stop a Task: Stop the current running task.
- Resume a Task: Resume a stopped task.
- Switch Tasks: Switch from the current task to a new or different one.
- Generate Reports: Generate a report of tasks worked on for a specific day.
- Get the Current Task: Print the task currently running, if any.
- List Tasks: Print a list of the tasks worked on a day.
- Rename a Task: Change the name of a task.
- Delete a Task: Remove a task.
To use Task Tracker, you need to have Rust installed on your system. If you don't have Rust installed, you can get it from here. Then run:
cargo install tasklogStart a new task named coding:
tasklog start codingSwitch to a new task named meeting:
tasklog switch -c meetingStop the current task:
tasklog stopGenerate a report for today:
tasklog reportGenerate a report for yesterday:
tasklog report -n=1Contributions are welcome! Feel free to open an issue or submit a pull request on GitHub.
This project is licensed under the GPL-v3.0 License. See the LICENSE file for details.