zeit/README.md

75 lines
814 B
Markdown
Raw Normal View History

2020-10-14 23:50:05 +00:00
zeit
----
Zeit erfassen. A command line tool for tracking time spent on tasks & projects.
## Build
2020-10-16 00:04:42 +00:00
```sh
2020-10-14 23:50:05 +00:00
make
```
## Usage
2020-10-14 23:51:12 +00:00
Please make sure to `export ZEIT_DB=~/.config/zeit.db` (or whatever location you would like to have the zeit database at).
2020-10-15 21:46:57 +00:00
### Track activity
2020-10-14 23:50:05 +00:00
2020-10-16 00:04:42 +00:00
```sh
2020-10-14 23:50:05 +00:00
zeit track --help
```
Example:
2020-10-16 00:04:42 +00:00
```sh
2020-10-14 23:50:05 +00:00
zeit track --project project --task task --begin -0:15
```
2020-10-15 21:46:57 +00:00
### Show current activity
2020-10-15 20:56:13 +00:00
2020-10-16 00:04:42 +00:00
```sh
2020-10-15 20:56:13 +00:00
zeit tracking
```
2020-10-15 21:46:57 +00:00
### Finish tracking activity
2020-10-14 23:50:05 +00:00
2020-10-16 00:04:42 +00:00
```sh
2020-10-14 23:50:05 +00:00
zeit finish --help
```
Example:
2020-10-16 00:04:42 +00:00
```sh
2020-10-14 23:50:05 +00:00
zeit finish
```
2020-10-15 21:46:57 +00:00
### List tracked activity
2020-10-16 00:04:42 +00:00
```sh
2020-10-15 21:46:57 +00:00
zeit list
```
2020-10-16 00:04:42 +00:00
2020-10-16 00:21:51 +00:00
### Erase tracked activity
```sh
zeit erase --help
```
Example
```sh
zeit erase 14037730-5c2d-44ff-b70e-81f1dcd4eb5f
```
2020-10-16 00:04:42 +00:00
### Import tracked activities
```sh
zeit import --help
```
Example:
```sh
zeit import --tyme ./tyme.export.json
```