Bear Today is a templated note generator for Bear Notes on the Mac.
It allows you to create date based journal or planning entries with date based note titles or tags.
Download the latest release
Call it journal.md
and save it in the same directory as BearToday, in a subdirectory called templates
on in a folder called ~/.beartoday/
---
title: "{{date.day}} {{date.month_name}} {{date.year}}"
tags: ["journal/{{date.year}}/{{date.padded_month}}"]
---
## Journal
## Top Three Things To Do {{date.day_of_week}}
{% for i in (1..3) %}
- [ ] Thing {{ i }}{% endfor %}
## Log
From Terminal, run ./BearToday journal
and open Bear. You'll find a new note named and tagged with today's date.
The templating is based on the Liquid language, so go there to find out more about what you can do.
A full list of properties you can use in your template:
date.day_of_week
date.day
date.month
date.year
date.month_name
date.padded_day
date.padded_month
Some of the ideas I have for this
- Additional properties for templates.
- Macros for things like your daily calendar entries
- Supporting Agenda
- Output to file or clipboard
- Open to suggestions!
Any feedback, drop me an email at damian@damianm.com or open an issue.