4e71489616
It does not support launching multiple instances anymore. It used to just spawn another window, since finder can technically only have one instance. Now however it fails. Maybe I should install a Finder alternative
7 lines
305 B
Bash
7 lines
305 B
Bash
ls /Applications/ /Applications/Utilities/ /System/Applications/ /System/Applications/Utilities/ /Users/ivar.fatland/Applications/ /Users/ivar.fatland/Applications/Chrome\ Apps.localized/ | \
|
|
grep '\.app$' | \
|
|
sed 's/\.app$//g' | \
|
|
sort | \
|
|
raymenu | \
|
|
xargs -I {} open -n -a "{}.app"
|