Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
2answers
245 views

Anyone submitted or know of an application in the Mac App Store that uses launchd?

Just wondering if anyone has sucessfully submitted an app or know of an app that exists in the Mac App Store that uses launchd. Thanks.
3
votes
2answers
2k views

Starting/stopping a launchd agent for all users with GUI sessions

I need to be able to start/stop a per-session GUI agent from a root level daemon. Similar issues are discussed here, here and here. What I want to be able to do is basically for num in `ps ax | ...
0
votes
0answers
117 views

OnDemand Launch Agents with Lion's Multi-user feature

I've got a LaunchDeamon built using Cocoa. It needs to show a message to the logged in users on occasion. I understand that a LaunchAgent can be built to handle this and be told to display "on demand" ...
0
votes
1answer
1k views

How to install launch agent on Mac os x 10.5 / 10.6

I have developed a launchAgent in cocoa. It works fine for me on dev environment, by placing the plist file in location /Library/LaunchAgents/.To distribute and install this on other laptops, I ...
0
votes
2answers
396 views

LaunchAgent - Is there something like RunAtScreenSaver?

I am looking for a way to execute my app (it's a background task) at times, where the machine is "idle". A good incident would be when the screensaver launches. I already read the manual auf launchd ...
0
votes
1answer
253 views

How do I secure a per user GUI launchd agent against a non admin user disabling it?

I have a pair of launchd daemons, one of which is a true daemon (runs as root) and one of which is a GUI agent that runs as a per GUI session basis (session type Aqua). I need to prevent non admin ...