Hi @alin23 — thank you for maintaining StartupFolder.
I install GUI apps via Homebrew and choose to store them in ~/Applications (not /Applications). After enabling StartupFolder to run at login, it errors on startup and doesn’t launch as expected.
Upon investigation, it looks like the launch job com.lowtechguys.StartupFolder tries to run:
/usr/bin/open /Applications/StartupFolder.app --env login=true
…but the app is actually at:
~/Applications/StartupFolder.app
So launchctl logs:
The file /Applications/StartupFolder.app does not exist. (from /tmp/com.lowtechguys.StartupFolder.err)
Workaround: symlink or move the app to /Applications:
ln -s ~/Applications/StartupFolder.app /Applications/StartupFolder.app
Hi @alin23 — thank you for maintaining StartupFolder.
I install GUI apps via Homebrew and choose to store them in
~/Applications(not/Applications). After enabling StartupFolder to run at login, it errors on startup and doesn’t launch as expected.Upon investigation, it looks like the launch job
com.lowtechguys.StartupFoldertries to run:/usr/bin/open /Applications/StartupFolder.app --env login=true…but the app is actually at:
~/Applications/StartupFolder.appSo launchctl logs:
The file /Applications/StartupFolder.app does not exist.(from/tmp/com.lowtechguys.StartupFolder.err)Workaround: symlink or move the app to
/Applications:ln -s ~/Applications/StartupFolder.app /Applications/StartupFolder.app