Tell me more ×
Super User is a question and answer site for computer enthusiasts and power users. It's 100% free, no registration required.

I suppose that because because of the updated way that the Calendar application is integrated into the OS X system and the notification area the "calendar agent" needs to constantly run in the background on OS X ML.

I see it making a lot of requests when I debug the HTTP(s) requests on the system:

screenshot-with-shadow.png

The requests stop if I do killall CalendarAgent:

Picture 2.png

How can I keep the calendar agent from running in the background?

ps: I also tried removing the calendar from the notification area without luck:

screenshot-with-shadow.png

share|improve this question

1 Answer

up vote 5 down vote accepted

You can try like this:

launchctl unload /System/Library/LaunchAgents/com.apple.CalendarAgent.plist

If you want to make this permanent:

launchctl unload -w /System/Library/LaunchAgents/com.apple.CalendarAgent.plist

Hope it helps!

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.