Posted on 07-27-2021 01:42 PM
Hey everyone!
So I have a script I am using and it moves everything into the dock as I want but for certain apps like, launchpad it puts it on the dock without the icon and it doesn't work when clicking it. Any ideas on why this would be?
Solved! Go to Solution.
Posted on 07-27-2021 02:44 PM
What OS is this happening on?
My first guess is the path to them in the script may be wrong. Remember that with Catalina and up, the built in applications are all in the path /System/Applications/, not in /Applications/ despite how it appears in the Finder. You can see this by dragging an application, like, say System Preferences.app into Terminal. The path it prints back is
/System/Applications/System\ Preferences.app
Posted on 07-27-2021 02:44 PM
What OS is this happening on?
My first guess is the path to them in the script may be wrong. Remember that with Catalina and up, the built in applications are all in the path /System/Applications/, not in /Applications/ despite how it appears in the Finder. You can see this by dragging an application, like, say System Preferences.app into Terminal. The path it prints back is
/System/Applications/System\ Preferences.app
Posted on 07-28-2021 06:46 AM
This is exactly what I needed to know! Thanks!