Vorrei uno schema URL specifico, magnet:
, per eseguire un comando in Terminale.
Ad esempio:
magnet:?xt=urn:bKKH
Eseguirà:
myCommand "magnet:?xt=urn:bKKH"
Ho trovato la mia risposta usando AppleScript:
on open location this_URL
Modifica Info.plist dell'applicazione con:
<key>CFBundleURLTypes</key>
<array>
<dict>
<key>CFBundleURLName</key>
<string>Magnet</string>
<key>CFBundleURLSchemes</key>
<array>
<string>magnet</string>
</array>
</dict>
</array>