From 4aa06e671f91125f91fc7142bf7c8b8e434f5afa Mon Sep 17 00:00:00 2001 From: Evie Litherland-Smith Date: Sun, 17 Mar 2024 11:52:01 +0000 Subject: [PATCH] Reduced selection of org files sent to mobile --- config/org-mode.org | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/config/org-mode.org b/config/org-mode.org index 7be4f57..b1e5fa5 100644 --- a/config/org-mode.org +++ b/config/org-mode.org @@ -150,7 +150,8 @@ Better syncing to mobile, for use with [[https://github.com/orgzly-revived/orgzl (with-eval-after-load 'org (setq org-mobile-directory "~/.orgmobile/" org-mobile-agendas nil - org-mobile-files '(org-agenda-files) + org-mobile-files (list (expand-file-name "diary.org" org-directory) + (expand-file-name "task.org" org-directory)) org-mobile-inbox-for-pull (expand-file-name "inbox.org" org-directory) org-mobile-force-id-on-agenda-items nil) (add-hook 'org-capture-finalize-hook #'org-mobile-push))