From a78da65f0f027a607fb2e1cc9138b63c06f61654 Mon Sep 17 00:00:00 2001 From: synt-xerror <169557594+synt-xerror@users.noreply.github.com> Date: Tue, 17 Feb 2026 16:52:03 -0300 Subject: [PATCH] New readme --- README.md | 47 +++++++++++++++++++++++++++++++++++++++++++++++ README.txt | 18 ------------------ 2 files changed, 47 insertions(+), 18 deletions(-) create mode 100644 README.md delete mode 100644 README.txt diff --git a/README.md b/README.md new file mode 100644 index 0000000..6479ea7 --- /dev/null +++ b/README.md @@ -0,0 +1,47 @@ +# task-cli. + +# how to use: + +1. clone this repo +2. cd to the repo directory +3. run "make" +4. run "make install" (as root) +5. then run "task" + +to clean, run "make clean" + +# commands: + +## add +to add a new task. example: + +``` +task add "take a bath (please)" +``` + +## read +to read all your tasks + +example: +``` +task read +``` + +the output will look like: +``` +0. [ ] take a bath please +``` + +## done +to mark a task as done + +example: +``` +task done 0 +``` + +the output of `task read` will no longer print the task 0 + +--- + +please give a star if you like it :( i love you diff --git a/README.txt b/README.txt deleted file mode 100644 index bbb4396..0000000 --- a/README.txt +++ /dev/null @@ -1,18 +0,0 @@ -task-cli. -========= - -how to use: ------------ - -1. clone this repo -2. cd to the repo directory -3. run "make" -4. run "make install" -5. then run "task" - -6. to clean, run "make clean" - -commands: ---------- - -no commands yet