commit 1e334b9f0b0792241c0790bab78d4572e9f9a19a Author: Nico Schottelius Date: Wed Aug 1 23:00:25 2012 +0200 begin vork Signed-off-by: Nico Schottelius diff --git a/README b/README new file mode 100644 index 0000000..f5cffb8 --- /dev/null +++ b/README @@ -0,0 +1,8 @@ +ctt - time tracking for geeks + +ctt [list of tags] - starts time tracking + press ctrl-c to stop time tracking + +ctt --start "date" +ctt --start "date" --stop "otherdate" + diff --git a/ctt.py b/ctt.py new file mode 100755 index 0000000..7b38ad1 --- /dev/null +++ b/ctt.py @@ -0,0 +1,10 @@ +#!/usr/bin/env python3 + +import calendar +import datetime + +import locale + +# Setup locale + +print(locale.getlocale())