Commit c79e5a97 authored by Robby Russell's avatar Robby Russell
Browse files

Merge pull request #2132 from jkaving/forklift2

Add support for ForkLift 2 to the ForkLift plugin
parents bbe4ea54 2be4158d
# Open folder in ForkLift.app from console # Open folder in ForkLift.app of ForkLift2.app from console
# Author: Adam Strzelecki nanoant.com, modified by Bodo Tasche bitboxer.de # Author: Adam Strzelecki nanoant.com, modified by Bodo Tasche bitboxer.de
# Updated to support ForkLift2 by Johan Kaving
# #
# Usage: # Usage:
# fl [<folder>] # fl [<folder>]
...@@ -22,9 +23,33 @@ function fl { ...@@ -22,9 +23,33 @@ function fl {
fi fi
fi fi
osascript 2>&1 1>/dev/null <<END osascript 2>&1 1>/dev/null <<END
tell application "ForkLift"
try
tell application "Finder"
set appName to name of application file id "com.binarynights.ForkLift2"
end tell
on error err_msg number err_num
tell application "Finder"
set appName to name of application file id "com.binarynights.ForkLift"
end tell
end try
if application appName is running
tell application appName
activate
end tell
else
tell application appName
activate
end tell
repeat until application appName is running
delay 1
end repeat
tell application appName
activate activate
end tell end tell
end if
tell application "System Events" tell application "System Events"
tell application process "ForkLift" tell application process "ForkLift"
try try
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment