I’m starting up another campaign shortly and I used to use OneNote for my session notes because it’s so easy to just put stuff anywhere on the page, which is really helpful for the scattered way I think.
But I switched to Linux since my last campaign and I can’t find something that I like that’s similar in that sort of freeform canvas.
I tried obsidian and hated it. I tried OneNote in browser and it’s just so much worse. I tried Notion and I did like it for a bit, but it’s really pushy about using its AI and linking to other pages and such.
So, yeah. I mean, my next thought is literally to start using Krita or Paint or something because I can’t find a program that’s just kinda bare bones and free form but lets me enter text wherever and slap down some character art, maybe draw a few arrows or something.
Help?
It’s open source, no need to sell ;)
Some video that will probably be more digestible
What’s underneath
I’m not sure from what POV you are coming, so first of all: Logseq allows you to write notes in markdown format (I don’t know how canvas’ work but it also should be some open standard. SVG maybe?). It is versatile while still being readable in pure text format. It also means that those are mostly pure files, so you can back them up however you want, you can move them to another markdown editor, another notes management program, etc.
Tags and references
Now, let’s say that after an adventure you want to have some news for your players. I would go about it this way:
news
,radio #1
, maybe a reference to the parent adventure? Depends how you will want to view it in the future[[post mortem]]
, so it also is a reference topost mortem
note (does not need to exist ATM)[[news]]
, so news tag/page (Logseq does not really differentiate between tags and links) will also get a reference to this adventure.TODO
/DONE
, so you can mark if you passed it to them alreadyThat way, after a bunch of adventures
post mortem
page and see all references from all the adventuresnews
page and see a list of all pages tagged withnews
radio #1
and see all the news they saidbackground
notesSummary notes and tag structure
Let’s say you have a bunch of adventures, some tagged as
adventure
some asadventure/done
. Logseq will recognize the latter as a part of a structure, same as if those were directories. But since everything is a note, you can have aadventure
note that is like a summary for all the adventures (you will get a list of all references out of the box). Or a noteact 1/adventures
with only the adventures in that act (andbackground
tags structure shared between them). With queries, you can in any note get a list of for example all notes that areact 1
, and not tagged withadventure/done
. So you still can have hierarchies where it makes sense, but you are not locked out of some name for a note because there is a directory with that name (like Obsidian does and why I decided to phase out of it). BTW, you can also embed only one point from another page. So you can take a reference to a point in the plan for an adventure from the past, embed it in another note, and if you decide to add some info to it, editing it in the embedding note will also affect all the other occurrences of that pointTL;DR
So in general it’s very versatile, very tag-based, while not locking you out of directory-like structures and based on pure-text files (you can embed images) that are readable by other tools too