What I’m trying to do
Does anyone know if I can add an Obsidian bookmark to an Obsidian file from within Mac’s Finder app? Is this possible? (I tried asking this on Discord, to no avail). Thanks!
Does anyone know if I can add an Obsidian bookmark to an Obsidian file from within Mac’s Finder app? Is this possible? (I tried asking this on Discord, to no avail). Thanks!
If I understand what you’re asking, check out Hookmarks. It’s not free for linking files, but I’m pretty sure it will let you link how you want.
Interesting thought, thanks!.. I like Hookmarks… but I’m trying to do something different: I’d like to add a bookmark to a file from within Mac’s finder that will show up as a bookmark in Obsidian
If you don’t mind Obsidian opens the note, it might be possible by combining Advanced URI and Apple Shortcuts.
I haven’t tested it myself so it’s just a rough idea, but the shortcut will be something like this:
Come to think of it, bookmarks are actually just a single JSON file .obsidian/bookmarks.json
.
It looks like:
{
"items": [
{
"type": "file",
"ctime": 1695379682293,
"path": "Daily/2023-09-29.md"
}
]
}
When I edited this file, the bookmarks were also updated in Obsidian. So I will suffice to edit it from Finder using some shortcuts.
Of course, there is a risk like a file format change.