To register a ksync:// handler in mac, follow below steps
- Open Apple Script Editor
- Copy paste below code
To register a ksync:// handler in mac, follow below steps
on open location myURL tell application "Terminal" do script "java -jar ~/ksync3.jar " & myURL end tell end open location
<key>CFBundleIdentifier</key>
<key>CFBundleURLTypes</key>
<array>
<dict>
<key>CFBundleURLName</key>
<string>KSync URI Scheme</string>
<key>CFBundleURLSchemes</key>
<array>
<string>ksync</string>
</array>
</dict>
</array>