20250506.1746536761

This commit is contained in:
fz0x1 2025-05-06 15:06:01 +02:00
parent 1194ba127d
commit 3c5f3155eb
Signed by: fz0x1
GPG key ID: 6F81647BE1B459F4
3 changed files with 77 additions and 17 deletions

View file

@ -357,21 +357,33 @@ PRIORITY may be one of the characters ?A, ?B, or ?C."
;; View 7 days in the calendar view
((agenda "" ((org-agenda-span 7)))
;; Display items with priority A
(tags-todo "+TODO=\"STRT\""
((org-agenda-overriding-header "All started tasks (STRT)")))
;; ------------------ Priority A ------------------
(tags "PRIORITY=\"A\""
((org-agenda-skip-function '(org-agenda-skip-entry-if 'todo 'done))
(org-agenda-overriding-header "High-priority unfinished tasks:")))
((org-agenda-skip-function
'(or (org-agenda-skip-entry-if 'todo 'done)
(org-agenda-skip-entry-if 'todo '("STRT" "HOLD"))))
(org-agenda-overriding-header "Highpriority unfinished tasks:")))
;; Display items with priority B (really it is view all items minus A & C)
;; ------------------ Priority B ------------------
(tags "PRIORITY=\"B\""
((org-agenda-skip-function '(org-agenda-skip-entry-if 'todo 'done))
(org-agenda-overriding-header "ALL normal priority tasks:")))
((org-agenda-skip-function
'(or (org-agenda-skip-entry-if 'todo 'done)
(org-agenda-skip-entry-if 'todo '("STRT" "HOLD"))))
(org-agenda-overriding-header "ALL normalpriority tasks:")))
;; Display items with pirority C
;; ------------------ Priority C ------------------
(tags "PRIORITY=\"C\""
((org-agenda-skip-function '(org-agenda-skip-entry-if 'todo 'done))
(org-agenda-overriding-header "Low-priority Unfinished tasks:")))
((org-agenda-skip-function
'(or (org-agenda-skip-entry-if 'todo 'done)
(org-agenda-skip-entry-if 'todo '("STRT" "HOLD"))))
(org-agenda-overriding-header "Lowpriority unfinished tasks:")))
(tags-todo "+TODO=\"HOLD\""
((org-agenda-overriding-header "All holded tasks (HOLD)")))
)
;; Don't compress things (change to suite your tastes)