From cc2d2464ef09a71ebd72a515bd2ae60dcd721028 Mon Sep 17 00:00:00 2001 From: Huck Boles Date: Sat, 18 Feb 2023 15:45:21 -0600 Subject: [PATCH] v0.3.0 README --- README | 57 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 57 insertions(+) diff --git a/README b/README index e69de29..db05547 100644 --- a/README +++ b/README @@ -0,0 +1,57 @@ + odot v0.3.0 + + Task manager written in C + + Installation: + + Download source files + $ curl "https://download.huck.website/odot-[VERSION].tar.gz" > odot.tar.gz + + Unpack source files + $ tar -xzvf odot.tar.gz + $ cd odot + + Build odot + $ make && sudo make install + + Usage: + + Results are modified by options preceded by a dash. + The rest of the line is parsed into a task. + + Available flags: + -g [group] Specify group for task + -n Add new task + -x Mark task as done + -s Show tasks + -a Show all groups + -d Also show completed tasks + -A Show all tasks in database + -r Remove task from database + -V Display version + -c Remove color + + Examples: + + Add a task to default group: + $ odot -n "task" + + Show tasks in default group: + $ odot + + Add a task to a group called newgroup: + $ odot -ng newgroup "things to do" + + Finish a task and show other completed tasks: + $ odot -x "thing I did" -d + + Show all completed tasks in a group called tasks: + $ odot -dg tasks + + Show all tasks in database: + $ odot -A + + Remove a task from database (completely removes task from memory, useful for typos): + $ odot -r "task I want to forget" + + -- 2.44.2