Org Mobile

This commit is contained in:
2024-06-05 17:26:59 -04:00
parent c33ee8bf2b
commit e8c6ed2665
3 changed files with 116 additions and 2 deletions

View File

@@ -529,7 +529,7 @@ etc.
(leaf org-agenda :require t
:after org
:config
(setq org-agenda-files (concat org-directory "/MasterList.org")))
(setq org-agenda-files `(,(concat org-directory))))
#+end_src
*** Capture Things
@@ -562,7 +562,18 @@ e.g. meetings, deadlines and whatever else:
("j" "Journal" entry (file+datetree "journal.org")
"* %?\nEntered on %U\n %i\n %a")
("m" "Meeting" entry (file+headline "dates.org" "Meetings")
"* %^{prompt}\n:PROPERTIES:\n:CATEGORY: Meeting\n:END:\nWhen: %^t\nAdded: %U\nTags: %^g\n%?"))))
"* %^{prompt} :meeting:%^G\n:PROPERTIES:\n:CATEGORY: Meeting\n:LOCATION: %^{LOCATION}\n:ADDED: %U\n:END:\nMeeting is scheduled for: %^t\n%?\n\n"))))
#+end_src
** Org Mobile
#+begin_src elisp :tangle yes :exports code
(leaf org-mobile
:after org
:config
(setq org-mobile-directory "/scpx:webdav@server:/srv/webdav"
org-mobile-inbox-for-pull (concat org-directory "/mobileorg.org")
org-mobile-agendas nil))
#+end_src
* Flutter