patch for finder
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user