No description
Find a file
2021-07-20 09:13:29 +02:00
src show last acitivity 2021-07-20 09:13:29 +02:00
.gitignore Improved error handling 2021-07-16 21:02:17 +02:00
.project Start command 2021-02-28 22:46:00 +01:00
Cargo.lock Improved error handling 2021-07-16 21:02:17 +02:00
Cargo.toml Improved error handling 2021-07-16 21:02:17 +02:00
LICENSE Added LICENSE file 2021-02-04 22:17:26 +01:00
README.md show last acitivity 2021-07-20 09:13:29 +02:00

Bartib

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

Build

Build it with cargo:

cargo build --release

The .bartib file

Bartib safes a journal of all tracked activities 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 activity

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

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

All currently tracked activites will be stopped. If the specified file does not exist yet it will be created.

Stop a running activity

Stops the currently running activity:

bartib stop

List all currently running activities

bartib current

List activities

All activities:

bartib list

Do not group activities by date:

bartib list --no_grouping

List activities in a given time range:

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

List activities on a given day:

bartib list --date 2021-05-17

List activities of special days:

bartib list --today
bartib list --yesterday

Show last activity

bartib last