Change location of org files

This commit is contained in:
Marcus Kammer 2024-03-13 16:49:00 +01:00
parent e9c364a98a
commit 8caa4266f5

View file

@ -218,7 +218,7 @@
;; Purpose: To capture general notes. These notes can optionally be linked to a currently clocked-in task.
;; Fields: Heading, optional task link, initial content, and a timestamp.
(add-to-list 'org-capture-templates
`("n" "Note" entry (file+headline "agenda/notes.org" "Notes")
`("n" "Note" entry (file+headline "notes.org" "Notes")
,(concat "* %? :NOTE:\n"
":PROPERTIES:\n"
"%(mk/link-to-current-task)\n"
@ -260,7 +260,7 @@
;; Purpose: To capture activities in a chronological order and automatically start a clock for time tracking.
;; Fields: Timestamp, activity description.
(add-to-list 'org-capture-templates
'("l" "Log" entry (file+olp+datetree "agenda/logbook.org")
'("l" "Log" entry (file+olp+datetree "logbook.org")
"* %T - %^{Activity} :LOG:\n%?"
:clock-in t
:empty-lines 1))