Bu komut dosyasındaki olası bir gelişme, şu anda seçilen dosyaları Finder'dan kullanmak için çalıştırma işleyicisini değiştiriyor olabilir:
on run
tell application "Finder" to set sel to selection
open sel
end run
on open the_files
repeat with i from 1 to (count the_files)
try
set posix_path to POSIX path of (item i of the_files as alias)
if posix_path ends with "/" then set posix_path to ¬
text 1 thru -2 of posix_path
try
do shell script "ln -s " & quoted form of posix_path ¬
& " " & quoted form of (posix_path & ".sym")
on error
try
do shell script "ln -s " & quoted form of posix_path ¬
& " " & quoted form of (posix_path & ".sym") with administrator privileges
end try
end try
end try
end repeat
end open
Eklemek için [application] /Contents/Info.plist dosyasını düzenleyebilirsiniz.
<key>LSUIElement</key>
<true/>
Sonuncusundan hemen önce </dict>. Bu, uygulamanın arka planda çalışacağı ve tıkladığınızda öne gelmeyeceği anlamına gelir.