~rostiger/logbook

A personal time tracker
logging
Logging
Renamed preview file

refs

main
browse  log 

clone

read-only
https://git.sr.ht/~rostiger/logbook
read/write
git@git.sr.ht:~rostiger/logbook

You can also use your local clone with git send-email.

#Logbook

Logbook is a personal time tracking tool written in ANSI C.

#Usage

Logbook reads data stored in a text file called logs.md using the Indental format.

DATE   STRT END  PROJECT        DESCRIPTION
210319 1600 1700 Logbook        #Documentation Readme 

The #tag in the Description is a historical artefact from the original JS version of Logbook that currently isn't being utilised and probably won't be in the near future.

#Configuration

The logs reside in the same folder as the binary, there is no configuration file. If you want to change the location of the logfile, you'll need to change the LOGPATH constant in main.c on line 7 and compile the code.

#Build

You'll need clang-format as well as a C compiler such as gcc (which comes pre-installed on many Linux distributions such as Ubuntu). Run ./build.sh to compile logbook.

#Extras