Just in case anyone is struggling with this still – Growl is now a flat package, so not as straightforward to edit. Here’s how to expand it, edit it and put it all back together again:
Download the Growl package and then in the Terminal:
[code]pkgutil –expand Growl.pkg Growl[/code]
Next, edit Growl/growl.pkg/Scripts/postflight and change it to the following (add the first and last lines)
[b]if [ “$3” = “/” ]; then[/b]
# Open GHA first so that, hopefully, Growl will already be running when the user lands in the prefpane.
“${PACKAGE_RESOURCES_DIR}/OpenAppWithoutAddingToRecents” “${INSTALL_DESTINATION_DIR}/Growl.prefPane/Contents/Resources/GrowlHelperApp.app”
“${PACKAGE_RESOURCES_DIR}/OpenGrowlPrefPane”
[b]fi[/b]
Finally, put it all back together again
[code]pkgutil –flatten Growl Growl121.pkg[/code]
Comments are closed