patch for finder

This commit is contained in:
Ivar Fatland
2026-05-09 23:04:54 +02:00
parent e57750c275
commit 0d6e69d682
+10 -1
View File
@@ -4,4 +4,13 @@ ls /Applications/ /Applications/Utilities/ /System/Applications/ /System/Applica
{ cat; echo "Finder"; } | \
sort | \
raymenu | \
xargs -I {} open -n -a "{}.app"
while read app; do
if [ "$app" = "Finder" ]; then
osascript -e 'tell application "Finder"
activate
make new Finder window
end tell'
else
open -n -a "$app.app"
fi
done