Is there an event fired when screensaver starts? Like for keychain locking:
OSStatus keychain_locked(SecKeychainEvent keychainEvent, SecKeychainCallbackInfo *info, void *context){...}
|
Is there an event fired when screensaver starts? Like for keychain locking:
|
||||
|
|
|
Finally found it — the solution is to use NSDistributedNotificationCenter and observe folowing events
Like
|
|||
|
|
|
While there is no Carbon event for this, you can get notified when the current application changes, and then check to see if the new application is the screen saver process.
|
|||
|
|