diff --git a/MTMR/AppleScripts/Finder.scpt b/MTMR/AppleScripts/Finder.scpt index 41f97b5..fc8d3b3 100644 --- a/MTMR/AppleScripts/Finder.scpt +++ b/MTMR/AppleScripts/Finder.scpt @@ -1,5 +1,7 @@ tell application "Finder" - make new Finder window - set target of front window to path to home folder as string + if not (exists window 1) then + make new Finder window + set target of front window to path to home folder as string + end if activate end tell