Workflow
I am using Things 3 as my goto Task Manager. A common workflow is, to quick capture Todos to Things with a global hotkey. For getting the context in which one captured a task, there is the great Things Helper. With a special hotkey one can e.g. from Safari capture a note with the current URL in the description.
Problem
I want to have the link to an Obsidian Note in the task I capture, when I want to e.g. follow up on something in the note. The Things Helper does not (yet?) support Obsidian.
Workaround
- Install KeySmith
- Create a shortcut in Obsidian for Copy obsidian url (I use Shift CMD C)
- Create the following Keysmith macro:
- which will result in:
Apple Script:
set note_link to the clipboard
tell application "Things3"
show quick entry panel with properties ¬
{name:"", notes:note_link}
end tell