Submit Hint Search The Forums LinksStatsPollsHeadlinesRSS
14,000 hints and counting!


Click here to return to the 'How do you use this?' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
How do you use this?
Authored by: mjb on Apr 23, '08 05:46:20PM
I imagine you could force the load immediately without a reboot/relogin with launchctl? Perhaps:

$ launchctl load ~/Library/LaunchAgents/com.domain.whatever.plist
(Not a launchd/launchctl guru here, please correct as needed)

[ Reply to This | # ]
How do you use this?
Authored by: mmnw on Apr 24, '08 02:36:18AM
This is perfectly correct. I'd like to add, if you would like to remove the job, you use
launchctl unload ~/Library/LaunchAgents/com.domain.whatever.plist
If you would like to remove the job permanently you should also delete/move the file from that folder (or set the disabled key in the plist file to true, see the man launchd.plist for details). You should also unload and then load again if you modify the .plist file.

[ Reply to This | # ]