Keeping Org-roam Daily Notes in a separate folder

Org-roam continues to impress.

I use org-roam’s “Daily Notes” feature every day as a frictionless place to put notes that may or may not need to be moved or otherwise dealt with later. It’s the Org-roam version of a similar feature in Roam.

One thing about it I didn’t care for was that the Daily Notes .org files were starting to pile up in the root of my ~/org directory.

Most of the time, file names and locations do not matter in org-roam. Everything is easy to find/browse right in Emacs. There are times, however, when I’m poking around in my org files using Dropbox or the Finder. All those daily files started getting in the way, so I decided to try moving them into their own ~/org/dailies/ folder.

Trouble was, the way I get to or create daily files is by using org-roam-dailies-today and that function creates the file in the root org-roam-directory folder. I asked about the possibility of a new setting for where to store dailies, but it turns out that the capability is already in org-roam with org-roam-dailies-capture-templates. This is an org-roam specific version of the org-capture-templates feature. Jethro helpfully sent me the following snippet for my config:

(setq org-roam-dailies-capture-templates '(("d" "daily" plain (function org-roam-capture--get-point) ""
                                            :immediate-finish t
                                            :file-name "dailies/%<%Y-%m-%d>"
                                            :head "#+TITLE: %<%Y-%m-%d>")))

And poof! new daily notes files are created in ~/org/dailies.

But what to do about the 3-months worth of existing files? They are full of links to other org files and those are all relative to the root ~/org directory. Moving them would break all those links. I had seen some comments about proper link handling when files are moved using dired, so I tried that. I fired up dired, marked all the daily notes files using %m2020-, and moved them to ~/org/dailies. I then deleted the org-roam.db database and ran org-roam-db-build-cache and guess what, all of the links and backlinks were updated and everything worked.

Now, all my “dailies” files are nicely tucked away in their own folder.

So cool.


org-mode In Your Pocket Is a GNU-Shaped Devil - Mike Hall

Mike Hall:

With Emacs, you don’t just go “la la la … I’m gonna add org mode back and call it a day!” You think to yourself, “I love org mode. I wish there was an easy way to turn an e-mail message into a todo …” and the next thing you know you’re dealing with how to configure GNUS.

Then you think “All my calendar stuff is in Google calendar … how can I get it into my org mode agenda?” and that means you’re off reading this guy’s page and just getting angrier and angrier.

Then you go in the kitchen and make a drink, and while you’re making it and calming down you think to yourself, if I’m doing all this stuff in Emacs anyhow, what would it hurt to follow Twitter in Emacs?

Now you’re not drinking because you’re angry … you’re drinking because you wonder what happened to you and it makes you sad. But you’re drunk, so it seems like a perfectly good idea to build an entire Web site using nothing but Emacs because then you can get a LaTeX version of it for if the asteroids hit and their radiation destroys all HTML. And having decided to do that, part of you thinks about how glad you are you have org mode, so you can organize the lengthy process of making sure you never have to leave Emacs again.

That’s right … because org-mode is just a collection of lisp running in an editor. It cannot impose more complex features on you. The genius of org-mode is that you will eventually impose more complex features on yourself.

This is exactly me every other week.


I'll be using Org-roam for the time being

It’s been a challenging week for me using Roam. For the past several days my Roam database simply wouldn’t load. I’d see the spinning Astrolabe forever. Deleting the site data in my browser and restarting would help for a time, but then it would happen again.

What I’ve come to learn is that I need my Roam database available to me all the time. I understand that Roam is still in beta, but here we are.

While I wait for Roam to figure things out, I’m back to using Org-roam. This means that I’m dependent upon Emacs for useful notes, and I was trying to avoid that, but at least I can get at my notes were something to break. You know, text files and all that.

I prefer “real” Roam, but Org-roam is pretty great, and is improving so fast it’s hard to keep up with it. Of course Org mode is just so good anyway. Oh, and it’s stable, so it’s got that going for it.