I wanted to include these in the original but I took too long and can’t edit. I’ll have a video on this soon but I wanted again to share here first. Here are the three Searchlink PopClip snippets (You still need search link installed)…
# popclip SearchLink + Multi Actions
name: SearchLink Copy
requirements: [text]
icon: search c
applescript: do shell script "automator -r -i \"{popclip text}\" ~/Library/Services/SearchLink.workflow|awk '/http/{gsub(/^[ \t]*\"|\"[ \t]*$/,\"\"); print}'|pbcopy"
# popclip SearchLink on Selected Text and Paste
name: SearchLink Paste
requirements: [text, paste]
icon: search p
applescript: do shell script "automator -r -i \"{popclip text}\" ~/Library/Services/SearchLink.workflow|awk '/http/{gsub(/^[ \t]*\"|\"[ \t]*$/,\"\"); print}'|pbcopy"
after: paste
# popclip Seachlink Open Selected Text in default browser
name: Searchlink Open
requirements: [text]
icon: search o
applescript: do shell script "open $(automator -r -i \"{popclip text}\" ~/Library/Services/SearchLink.workflow | grep -o 'https[^ ]*')"
Copy
Runs Searchlink and adds to clipboard to be pasted elsewhere
Paste
Is the same as the first but will replace the selected text with the results (good for overwriting in a blog post) - The original concept
Open
Will open the results of the searchlink wherever. (Basically I’m feeling lucky)