2022-07-07 11:39:19 +00:00
|
|
|
# Habit Tracker
|
|
|
|
|
|
|
|
Forming good habits and getting rid of bad ones can be difficult. The objective
|
|
|
|
of this piece of software is to be able to track our habits to make sure we're
|
|
|
|
progressing.
|
|
|
|
|
|
|
|
## Usage
|
|
|
|
|
|
|
|
Habit Tracker uses commands appended after the program name in the shell to use
|
|
|
|
different functionalities (i.e. `htracker <command> [options]`). If no command
|
|
|
|
is specified then the `list` command is assumed by default. Here are the list of
|
|
|
|
commands:
|
|
|
|
|
|
|
|
- `add` or `a`: add a new habit
|
2022-07-19 13:06:21 +00:00
|
|
|
- `commit`: commit to having done a habit
|
|
|
|
- `delete` or `del`: delete a habit
|
|
|
|
- `info` or `i`: get information about a habit
|
2022-07-07 11:39:19 +00:00
|
|
|
- `help` or `h`: show help information
|
|
|
|
- `list` or `ls`: list the habits available for today
|
|
|
|
- `modify` or `mod`: modify the settings for a habit
|
2022-07-19 20:57:40 +00:00
|
|
|
- `stats`: show statistics on current habits
|
2022-08-11 09:05:02 +00:00
|
|
|
- `vacation` or `vac`: toggle vacation mode
|
2022-07-07 11:39:19 +00:00
|
|
|
|
|
|
|
## License
|
|
|
|
|
|
|
|
This software is licensed under the terms & conditions of the GNU Affero
|
|
|
|
General Public License version 3 or greater (see the [license file](./LICENSE)).
|