fradeve / twtools

A command line tool to enhance TimeWarrior's functionalities.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Timewarrior-tools

Very simple set of scripts to get basic information from TimeWarrior.

Used to get some statistics and achieve some integration with Lemonbar and i3 WM.

Installation

No PIP package is available so far. Install it running setup.py Python file.

python setup.py install

ArchLinux-specific required packages, not installed by default by PIP:

tk texlive

Tools: activity management

All of the tools included are available from the command line.

twcurrent

Shows the activity currently ongoing and the time elapsed since the task has been started.

Example:

twcurrent
twtools 0:43:45
twstop

Stops activity currently ongoing.

twstart

Starts tracking a new activity.

Example:

twstart writing

Tracking writing
Started 2017-03-11T14:24:11
Current                  11
Total               0:47:06

Tools: plotting intervals

The twstats command plots time spent on activities selected by tag, using matplotlib.

Example:

twstats twtools 'trello#416'

will filter by default activities with the tags twtools and trello#464 in the last month and sum the intervals by day, outputting the following:

image

To use a different time span or granularity, flags are available:

twstats --time_span '500days ago' --step week twtools 'trello#464'

image

Also, the stat tool comes with a comprehensive command line help: twstats --help.

Misc notes

  • The script uses matplotlib's support for LaTeX to output the plot, so both must be installed.
  • The script uses matplotlib's default style for the plot, but if seaborn is installed, it will be used.
  • The default matplotlib output is TkAgg, so tk must be installed.

About

A command line tool to enhance TimeWarrior's functionalities.

License:GNU General Public License v3.0


Languages

Language:Python 100.0%