tweak(org-agenda): edit org super-agenda groups

This commit is contained in:
Kiana Sheibani 2024-07-22 13:28:40 -04:00
parent 3e6172d1fe
commit 6eee16462e
Signed by: toki
GPG key ID: 6CB106C25E86A9F7

View file

@ -3605,23 +3605,30 @@ By customizing ~org-super-agenda-groups~ via a let-binding in my custom agenda v
((org-super-agenda-groups ((org-super-agenda-groups
'((:name "Next/In Progress" '((:name "Next/In Progress"
:todo ("NEXT" "STRT" "WAIT" "HOLD")) :todo ("NEXT" "STRT" "WAIT" "HOLD"))
(:discard
(:date t
:deadline t
:scheduled t))
(:name "Important" (:name "Important"
:priority "A" :priority "A"
:order 1) :order 1)
(:name "Goals"
:tag "goal"
:order 9)
(:name "Notes to Intake" (:name "Notes to Intake"
:tag "notes" :tag "notes"
:order 10) :order 10)
(:name "Assignments" (:name "Assignments"
:tag "assign" :tag "assign"
:order 2) :order 2)
(:order-multi
(3
(:auto-map (lambda (item) (:auto-map (lambda (item)
(~/org-agenda-section-by-link (~/org-agenda-section-by-link
"Goal: " "goal" item)) "Goal: " "goal" item)))
:order 3)
(:auto-map (lambda (item) (:auto-map (lambda (item)
(~/org-agenda-section-by-link (~/org-agenda-section-by-link
"Area: " "area" item)) "Area: " "area" item))))))))))))))
:order 4))))))))))
#+end_src #+end_src
This "overview" agenda command is very nice. It's so nice, in fact, that it's almost always the only agenda view I want to use! Having to go through the dispatcher every time I want to access it is annoying and unnecessary. This "overview" agenda command is very nice. It's so nice, in fact, that it's almost always the only agenda view I want to use! Having to go through the dispatcher every time I want to access it is annoying and unnecessary.