taskwarrior

Taskwarrior - How not to display the age of a task


I am using taskwarrior together with conky and to make the format look nicer, I want to modify, what information is actually given by taskwarrior. In particular, I do not want it to display the "Age" column of a task. Right now it looks like this:

ID Age   Due Description        Urg 
 1 33min 1d  Do Stuff           8.33

but I want it to look more like this:

ID Due Description        Urg 
 1 1d  Do Stuff           8.33

Is there an easy way of doing this? Thanks in advance!


Solution

  • Add the following lines to the file ~/.taskrc:

    report.report1.description=Report without age attribute
    report.report1.columns=id,due,description,urgency
    

    Then you can run task report1 to view the report.