]> git.huck.website - odot.git/commitdiff
v0.3.0 README
authorHuck Boles <huck@huck.website>
Sat, 18 Feb 2023 21:45:21 +0000 (15:45 -0600)
committerHuck Boles <huck@huck.website>
Sat, 18 Feb 2023 21:45:21 +0000 (15:45 -0600)
README

diff --git a/README b/README
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..db055472728fb19122c00204e29e8855b9563794 100644 (file)
--- 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"
+