From 1e334b9f0b0792241c0790bab78d4572e9f9a19a Mon Sep 17 00:00:00 2001 From: Nico Schottelius Date: Wed, 1 Aug 2012 23:00:25 +0200 Subject: [PATCH] begin vork Signed-off-by: Nico Schottelius --- README | 8 ++++++++ ctt.py | 10 ++++++++++ 2 files changed, 18 insertions(+) create mode 100644 README create mode 100755 ctt.py 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())