No description
Find a file
2021-07-12 22:19:58 +02:00
src Show response to user for started activity 2021-07-12 22:19:58 +02:00
.gitignore Start command 2021-02-28 22:46:00 +01:00
.project Start command 2021-02-28 22:46:00 +01:00
Cargo.lock added error types for task string parsing 2021-03-28 22:36:17 +02:00
Cargo.toml added error types for task string parsing 2021-03-28 22:36:17 +02:00
LICENSE Added LICENSE file 2021-02-04 22:17:26 +01:00
README.md do not group tasks in list if only tasks for a given day are shown 2021-07-04 21:42:01 +02:00

Bartib

Bartib is a time tracker for the command line. It safes a journal of all tracked tasks in a plaintext file.

Build

Build it with cargo:

cargo build --release

The .bartib file

Bartib safes a journal of all tracked tasks in a plaintext file. The file can either be specified via the -f / --file cli option or as a BARTIB_FILE environment variable.

Commands

Help

Print help information:

bartib -h

Start a new task

Start a new task with a short description and an associated project:

bartib start -p "The name of the associated project" -d "A description of the task"

This will also stop all currently running tasks.

Stop a running task

Stops the currently running task:

bartib stop

List all currently running tasks

bartib current

List tasks

All tasks:

bartib list

Do not group tasks by date:

bartib list --no_grouping

List tasks in a given time range:

bartib list --from 2021-03-01 --to 2021-11-01

List tasks on a given day:

bartib list --date 2021-05-17