begin vork
Signed-off-by: Nico Schottelius <nico@brief.schottelius.org>
This commit is contained in:
commit
1e334b9f0b
2 changed files with 18 additions and 0 deletions
8
README
Normal file
8
README
Normal file
|
@ -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"
|
||||
|
10
ctt.py
Executable file
10
ctt.py
Executable file
|
@ -0,0 +1,10 @@
|
|||
#!/usr/bin/env python3
|
||||
|
||||
import calendar
|
||||
import datetime
|
||||
|
||||
import locale
|
||||
|
||||
# Setup locale
|
||||
|
||||
print(locale.getlocale())
|
Loading…
Reference in a new issue