Create an applescript file in your <username>/Library/Applications
Support/Quicksilver/Actions folder called "Open URL in background"
with the contents:
=============================
using terms from application "Quicksilver"
on process text str
set result to str
do shell script "open -g " & (quoted form of str)
str
end process text
end using terms from
=============================
Or you can just download it here (added the generic actions icon):
http://cl.ly/3B5d
Hope that helps!
On Nov 9, 2:32 am, Guy <[email protected]> wrote:
> I've found myself in a couple of situations where I've got with an url
> in one application that I've wanted to open in Safari to read later
> but not wanted to leave the current application (or space) I'm in.
>
> Mail has this built in but there are other times where I'd like to
> just highlight the url then hit a trigger to send it to QS & choose
> 'Open Url In Background'.
>
> Any ideas as to how I could achieve this? I'm thinking maybe an
> applescript?