How to Use Daily Notes in Obsidian

Obsidian is a powerful knowledge management tool that allows you to take notes in a networked fashion.

The ability to form [[connections]] between them mimics the way ideas are captured in your brain, with the distinction that Obsidian never forgets: Built on top of a local folder of Markdown files, it is the perfect tool to construct a “second brain”.

In this series I’ll show some of the workflows I’ve found to be working well with Obsidian.

Here: Daily notes with capture note

Purpose

Main

The 000 Capture1 note is at the heart of my day to day note-taking in Obsidian.

It’s the universal list of all tasks and todos, collects reading / podcast / Netflix recommendations and serves as a shopping list.

In it I plan out my day and develop thoughts into notes.

I use it to keep track of all the things I’m doing through out the day (writing emails, planning things, writing or documenting code, talking to people etc.).

Markdown allows you to create checkbox lists with nested items so finished tasks can simply be crossed out.

For meetings, I create a note with discussion topics or minutes directly from the capture note.

I create a note for each article I read during the day with some basic metadata with author information, date of publishing and reading, link and tags. This allows organizing my collection of notes via tags and MOCs (maps of concepts).

Using one of the various Markdown editors for iOS, I can add thoughts, tasks, and recommendations to my capture note on mobile too2.

At the end of the day, I copy all completed tasks, readings and meeting notes of the day into the corresponding daily note.

Over time, the daily notes thus become a repository that keeps track of tasks, projects and content consumed.

Unfinished tasks stay in the capture note. There, after doing my daily planning and prioritization on the next day I either pick them up or discard them.

On the top of my daily notes you can see a section with links to yesterday’s and tomorrow’s note. This allows me to quickly navigate between daily notes to revisit them or to move tasks from one day to the next.

The Markdown for this header template can just be copied from one daily note to another and adjusted for each day or you can use a script to paste it with a shortcut of your choice (here with Autohokey3)

<< Yesterday `[[link to yesterday's daily note]]` | `[[link to tomorrows's daily note]]` Tomorrow >>


`[[link to capture note]]`

---

your notes

  1. the 000 in the file name ensures that the note is always on top in the file explorer pane ↩︎

  2. this requires using iCloud as directory for the Obsidian Vault ↩︎

  3. ; Syntax
    ; ^ = CTRL
    ; ! = ALT
    ; + = SHIFT
    ; # = WIN
    ; :: = run when pressed keys together
    
    ^+d::
    	yesterday := a_now
    	yesterday += -1, days
    
    	tomorrow := a_now
    	tomorrow += 1, days
    
    	FormatTime, tomorrow, %tomorrow%, yyyy-MM-dd
    	FormatTime, yesterday, %yesterday%, yyyy-MM-dd
    
    	SendInput, << Yesterday **[[Daily notes/%yesterday% | %yesterday%]]**{space}|{space}**[[Daily notes/%tomorrow% | %tomorrow%]]** Tomorrow >> 
    	Send, {Enter}
    	Send, {Enter}
    	SendInput, **[[000 Capture]]**
    	Send, {Enter}
    	Send, {Enter}---
    	Send, {Enter}
    Return
    
     ↩︎