Beorg: Difference between revisions

From wikinotes
No edit summary
Line 32: Line 32:
= Configuration =
= Configuration =
<blockquote>
<blockquote>
beorg encourages a literate programming style for it's config<br>
(since you're likely modifying this priarily on your phone).<br>
Scheme code-blocks are evlauated from within org headers.
<syntaxhighlight lang="bash">
<syntaxhighlight lang="bash">
# init.org
# ${your_org_dir}/init.org


* Todo states
* Todo states


   # still working out how to set custom-complete statuses
   #+begin_src scheme
   # ex. 'DONE', 'SKIP'
  (set! org-todo-action-keywords '("TODO" "NEXT" "WIP_" "CI__" "HOLD" "REVW" "MON_"))
   (set! org-todo-completed-keywords '("SKIP" "DONE"))
  #+end_src
 
* Org Directories


#+begin_src scheme
  #+begin_src scheme
(set! org-todo-action-keywords '("TODO" "NEXT" "WIP_" "CI__" "HOLD" "REVW" "MON_"))
  ;; beorg observes subdirectories of org-dir
#+end_src
  (set! sync-subfolders #t)
  #+end_src
</syntaxhighlight>
</syntaxhighlight>
</blockquote><!-- Configuration -->
</blockquote><!-- Configuration -->

Revision as of 23:38, 4 February 2023

An org mode client for ios.
Supports sending notifications to an apple watch, synchronization over webdav.
You can use mobius sync, just be mindful to open the app before/after making changes (or at least before continuing on pc).
beorg has 1st tier support for webdav solutions like nextcloud.

Documentation

home https://beorgapp.com/
official docs https://beorgapp.com/manual/
init.org docs https://beorgapp.com/learning/initorg/
app store https://apps.apple.com/us/app/beorg-to-do-list-agenda/id1238649962

Locations

$FOLDER/init.org config file
$FOLDER/inbox.org default place for quick captures, tasks

Configuration

beorg encourages a literate programming style for it's config
(since you're likely modifying this priarily on your phone).
Scheme code-blocks are evlauated from within org headers.

# ${your_org_dir}/init.org

* Todo states

  #+begin_src scheme
  (set! org-todo-action-keywords '("TODO" "NEXT" "WIP_" "CI__" "HOLD" "REVW" "MON_"))
  (set! org-todo-completed-keywords '("SKIP" "DONE"))
  #+end_src

* Org Directories

  #+begin_src scheme
  ;; beorg observes subdirectories of org-dir
  (set! sync-subfolders #t)
  #+end_src