Page 1 of 1

Notion & Autohotkey (and Automator in MacOS]

Posted: 18 Feb 2021, 11:11
by BoBo
Bc I've started using :arrow: Notion (after watching the :arrow: '30x40 Design Workshop' channel in YT) I've searched for an option to start a Notion-link within a specific browser (say Chrome in -icognito mode ;)) and guess what, Notion'ers are using AHK to circumvent one of Notions flaws (hell, that guy has > 2m YT subscribers) ... https://www.youtube.com/watch?v=HVe2BvSZc9w
And no, haven't found a solution to my problem.

Re: Notion & Autohotkey (and Automator in MacOS]

Posted: 19 Feb 2021, 04:09
by garry
example what was used
https://thomasjfrank.com/how-to-share-notion-links-that-open-directly-in-the-app/

Code: Select all

;- https://thomasjfrank.com/how-to-share-notion-links-that-open-directly-in-the-app/
^!v::
Clipboard := StrReplace(Clipboard, "https", "notion", 1)
SendInput, ^v
return