There was an error while loading. Please reload this page.
1 parent 532203b commit 7ea1201Copy full SHA for 7ea1201
1 file changed
macOS/Config/Dock/dockv5.sh
@@ -49,7 +49,14 @@ else
49
settingsApp="System Preferences.app"
50
fi
51
52
-dockapps=( "/System/Applications/Launchpad.app"
+# Determine the LaunchPad app
53
+if [[ -e "/System/Applications/Apps.app" ]]; then
54
+ LaunchPadApp="Apps.app"
55
+else
56
+ LaunchPadApp="Launchpad.app"
57
+fi
58
+
59
+dockapps=( "/System/Applications/$LaunchPadApp"
60
"/Applications/Microsoft Edge.app"
61
"/Applications/Microsoft Outlook.app"
62
"/Applications/Microsoft Word.app"
@@ -235,4 +242,4 @@ if [[ "$useDockUtil" == true ]]; then
235
242
else
236
243
echo "$(date) | Configuring dock with plist"
237
244
configure_dock_via_plist
238
-fi
245
0 commit comments