Browse Source

more fixes for new agenda

master
Marc Pohling 1 day ago
parent
commit
bbf597ec05
1 changed files with 7 additions and 5 deletions
  1. 12
      config.org

12
config.org

@ -1452,7 +1452,7 @@ nil)))
(org-agenda-overriding-header "weekly agenda")))
(org-ql-block
'(and (tags "@bag")
(todo "TODO")
(todo)
(not (done)))
((org-ql-block-header "@bag tasks")))
(org-ql-block
@ -1463,11 +1463,9 @@ nil)))
(not (deadline :from today :to +7))
(regexp "\\+[0-9]+[dwmy]"))
((org-ql-block-header "repeating tasks")))
(org-ql-block
'(and (todo "OPEN") (todo "HOLD"))
((org-ql-block-header "open or hold tasks")))
(org-ql-block
'(and (todo)
(not (or (todo "NEXT") (todo "OPEN") (todo "WAIT")))
(not (done))
(not (regexp "\\+[0-9]+[dwmy]"))
(not (scheduled :to today))
@ -1475,7 +1473,11 @@ nil)))
(not (scheduled :from today :to +7))
(not (deadline :from today :to +7))
(not (and (tags "@bag") (todo "TODO"))))
((org-ql-block-header "everything else")))
((org-ql-block-header "other tasks")))
(org-ql-block
'(and (or (todo "OPEN") (todo "WAIT") (todo "NEXT"))
(not (tags "@bag")))
((org-ql-block-header "tasks in pipeline")))
))
("p" "super agenda"

Loading…
Cancel
Save