The weekly review Orgmode „template“

Today I got this question in my comments for a video of my old orgmode tutorial series:

„would love to get a copy of your template files you use for both your journal entry and for your weekly review.“

So let me answer these questions.

The journaling part of life

This might sound sad for some of my followers, but a few months ago I switched my journaling system to Obsidian. I tried a while with org-roam to create a personal knowledge management system like Tiago Forte was describing it in „Building a scond brain„, but I always had too much fricton and so I rarely used this system. Now after switching to Obsidian I use this every day for journaling and note taking.

The weekly review part of life

Orgmode is still and will be also in the future my favorite personal productivity system. Its best suited to keep in control of all my tasks and responsibilities. But, if you want your system to run perfectly like an engine, you need frequent maintenance. In this case the maintenance job is called „weekly review“.

When I was recording the video linked above in 2016 I had the (at this time great) idea, that I create a template with a checklist for my weekly review and whenever I need to do that review I create an entry in a log file where I then check off all items of that checklist and at the end the weekly review is perfectly done.

The dark side of this is that I ended up with a constantly growing logfile that has nothing else than completed checklists in it. So either do some housekeeping stuff there too or find another solution.

Now, some years later the weekly review is a recurring task in my org file. This task looks like this:

So you see the empty checklist with all my checkpoints. The schedule is repeating, so that it is due every Sunday. So when I do the review I just see what checkpoint is next and then I do this step and check it off by positioning the cursor on the line and pressing CTRL-C twice.

For some of the steps I created custom views that help me to see only those parts of my org-system that I need. So in Lisp code part in my custome-agenda-settings looks like this:

The most complicated part is the „Planing ToDos“, here I want to display every „TODO“ or „NEXT“ task to set a scheduled date, except the tasks that I consider as a hobby, because I don’t want to force myself with tight schedules.

The part on the „rotten tasks“ is a way to fight procrastination, which is described here.

Back to the weekly review task. So when the task is finished, I mark it „DONE“ and due to the recurring schedule it will be scheduled for the next week Sunday again. To get rid of all noch checked checkboxes there is this setting in the PROPERTIES drawer:

Of course this setting alone won’t do the job. You need some lisp code in your Emacs init file:

So with this code snippet we call the „org-reset-checkbox-state-maybe“ function whenever a task gets a keyword that consideres this task as „done“. And then it checks for that „RESET_CHECK_BOXES“ property and if it is set to „t“ (true) it will clear all checkboxes in that task entry.

So now I dont’t need a template or an extra log file for my weekly reviews. I just do them when they need to be done, the checklist helps me not to forget anything and when I’m finished everything is ready again for the next week.

Additonal note: The checklist above is for my „private“ stuff. I have a similar weekly review for my work stuff that is due every Thursday. And there I might have other things, e.g. under „GET CLEAN“ I have checks for all my inboxes, e.g. „Bugzilla“, „Jira“, „Redmine“ and so on. So what you see here fits my needs, if you have other things that you need to check in your weekly review you can do so by just modifying the checklist.

3 Gedanken zu „The weekly review Orgmode „template“

  1. Maybe add one more line to your last code snippet:

    (add-hook ‚org-after-todo-state-change-hook ‚org-checklist)

    • Those were meant to be apostrophes, not commas. They must have gotten messed up in the submission.

  2. Hello,
    thank you for sharing your enthusiasm with like minded fellows!
    have you tried Logseq with Orgmode files? for me is a wonderful setup combining a daily journal with a knowledge management system …

Kommentare sind geschlossen.