User Tools

Site Tools


taskwarrior-notes

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
taskwarrior-notes [2025/07/23 09:10] – created dokuroottaskwarrior-notes [2025/08/27 12:33] (current) – [BASIC USAGE] dokuroot
Line 17: Line 17:
 cmake -S . -B build -DCMAKE_BUILD_TYPE=Release cmake -S . -B build -DCMAKE_BUILD_TYPE=Release
 cmake --build build cmake --build build
 +</code>
 +
 +====== BASIC USAGE ======
 +
 +A few useful commands: 
 +
 +====== Show tasks in the To-Do list ======
 +
 +<code>
 +task
 +</code>
 +
 +====== Add a new task ======
 +
 +<code>
 +task add The lovely task to do
 +task add The lovely task to do project:bigproject.subtask due:1978-05-12
 +</code>
 +the first version is a simple add to the list, the second one is using project/sub-project management. Other arguments can be added like "priority:H" (H for High, M for Medium, L for Low). 
 +
 +Due date can be provided as shorthand as well in the form of:
 +<code>
 +task add The lovely task to do project:bigproject.subtask due:eod
 +</code>
 +where "eod = end of day", eow, eom eoy can be used as well. 
 +
 +====== Complete a task ======
 +
 +Easiest is to complete it by number, such as:
 +<code>
 +task 1 done
 +</code>
 +
 +====== Remove a task a task ======
 +
 +This is when you make a mistake, remove the task is different from complete it, it makes it disappear. 
 +
 +<code>
 +task 15 delete
 +</code>
 +
 +====== Show completed tasks ======
 +<code>
 +task completed
 </code> </code>
  
  
  
taskwarrior-notes.1753261827.txt.gz · Last modified: 2025/07/23 09:10 by dokuroot