Skip to content

Applescripts to provice custom protocol handlers for sftp:// in ForkLift 3 an ssh:// in Terminal.app or both

Notifications You must be signed in to change notification settings

marcharding/macos-sftp-ssh-protocol-handler

Repository files navigation

Applescripts to provice custom protocol handlers for sftp:// in ForkLift 3 an ssh:// in Terminal.app or both

Installation

Open one of the applescript files in apple script editor and same them as an app.

Then in finder use "show contents" on the created app and insert the follwing lines in content/Info.plist and insert one of the following lines inside the <dict> node.

for sftp://

<key>CFBundleURLTypes</key>
<array>
	<dict>
		<key>CFBundleURLName</key>
		<string>Handler for sftp-Links</string>
		<key>CFBundleURLSchemes</key>
		<array>
			<string>sftp</string>
		</array>
	</dict>
</array>

for ssh://

<key>CFBundleURLTypes</key>
<array>
	<dict>
		<key>CFBundleURLName</key>
		<string>Handler for ssh-Links</string>
		<key>CFBundleURLSchemes</key>
		<array>
			<string>ssh</string>
		</array>
	</dict>
</array>

Example Links

Demo ssh link
Demo ssh link with port
Demo sftp link
Demo sftp link with port

About

Applescripts to provice custom protocol handlers for sftp:// in ForkLift 3 an ssh:// in Terminal.app or both

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published