Start a new topic

Sync Reminder to a file.

Now that we got "Sync Calendar to a file", how far is "Sync Reminder to a file"?


# DOABILITY:

I noticed that beorg already has the ability to fetch the "Reminder" into "Beorg Tasks" (by tabbing Settings>Configure Reminders>Authorize), so is it feasible to implement "Sync Reminder to a file" now?


# USAGE:

This will helps syncing Reminder todos from iOS to OrgMode, just like syncing Calendar events to Org-agenda.


# COMMENT:

Emacs users who bought an iPhone will appreciate this (and will definitely pay for this)!

IMG2966.jpeg
(389 KB)

There already is a prologue-like setting: #+BEGIN_SRC scheme (set! reminders-to-file-readonly #f) (set! reminders-header-text "#+TITLE: reminders") #+END_SRC You could try it to see if it meets your need.

Ah thank you so much Tom! That worked perfectly. For posterity, I went into the Beorg settings, then into customize (cogwheel settings), and then scrolled down to the "Reminders to org file" section and modified "Header text". My "beorg-customize.org` file for reference:


 

#+title: Customize settings file

This file has been auto-generated by beorg and should (probably) not be manually modified.

* Settings
#+begin_src scheme
(set! beorg-customized-var-names '("reminders-header-text" "reminders-to-file-future-delta" "beorg-auto-lines-before-headlines" "template-allow-spec-in-url-scheme" "org-log-into-drawer" "reminders-to-file-past-delta"))
(set! reminders-header-text ":PROPERTIES:
:ID: 89396e63-4242-4883-8026-a57da940a807
:CREATED: [2024-12-17 Tue 13:21]
:END:
#+title: Reminders")
(set! reminders-to-file-future-delta 108)
(set! beorg-auto-lines-before-headlines #f)
(set! template-allow-spec-in-url-scheme #t)
(set! org-log-into-drawer "LOGBOOK")
(set! reminders-to-file-past-delta -4)
#+end_src

 

Login or Signup to post a comment