From 8f832ba687bd1ff9d6fa44eef7bd4951edcd699a Mon Sep 17 00:00:00 2001 From: xerus2000 <27jf@pm.me> Date: Fri, 16 Oct 2020 12:25:00 +0200 Subject: [PATCH] config/task: Add initial taskrc.dhall --- .config/task/taskrc | 2 +- .config/task/taskrc.dhall | 56 ++++++++++++++++++++++++++++++++++++++- 2 files changed, 56 insertions(+), 2 deletions(-) diff --git a/.config/task/taskrc b/.config/task/taskrc index 511cf98..1334a3c 100644 --- a/.config/task/taskrc +++ b/.config/task/taskrc @@ -73,7 +73,7 @@ context.work=+work context.fog=+comm or +admin or +move or +config or +browse # Reports -report.inbox.description=Interesting tasks without project +report.inbox.description=Relevant tasks without project report.inbox.columns=id,priority,tags,scheduled.countdown,due.relative,description.desc,url,urgency report.inbox.labels=ID,Prio,Tags,⏰,Description,Url,Urg report.inbox.filter=status:pending project: -config -consume diff --git a/.config/task/taskrc.dhall b/.config/task/taskrc.dhall index 8d1c8b6..ecc0485 100644 --- a/.config/task/taskrc.dhall +++ b/.config/task/taskrc.dhall @@ -1 +1,55 @@ - +{ + +dataLocation = "~/.local/share/task", + +uda = [ + { + name = "url", + type = "string", + label = "URL" + }, + { + name = "recurDue", + type = "duration", + label = "RecDue" + { + name = "recurWait", + type = "duration", + label = "RecWait" + }, +] + +context = [ + { + name = "dev", + filter = "+dev" + }, + { + name = "work", + filter = "+work" + }, + { + name = "fog", + filter = "+comm or +admin or +move or +config or +browse" + }, +] + +report = [ + { + name = "inbox" + description = "Relevant tasks without project", + columns = "id,priority,tags,scheduled.countdown,due.relative,description.desc,url,urgency", + labels = "ID,Prio,Tags,⏰,Description,Url,Urg", + filter = "status:pending project: -config -consume", + sort = "urgency-" + }, + { + name = "next", + columns = "id,depends,priority,tags,scheduled.relative,due.relative,project,description.count,urgency", + labels = "ID,Deps,Prio,Tags,,⏰,Proj,Description,Urg", + filter = "status:pending limit:20" + } +] + +} +# i lli "A"n