Skip to content

next-slide-please/macos-app-nap

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Preventing macOS AppNap

On macOS, AppNap is a mechanism of reducing the energy consumption of apps by suspending them if the user is not interacting with an app.

As a concrete example, when running the druid timer example with some debug output added around the timer event, you'll notice that the output slows down significantly after about a minute if the application windows is in the background an completely invisible / covered by other windows.

To prevent this, e.g. if you're doing processing in the background and are relying on the timer, you can use this crate. Currently it only supports disabling App Nap entirely for the applications. More granular control is likely possible and desirable, and may be added in the future (pull requests welcome!).

Usage

Fairly simple at the moment:

fn main() {
    macos_app_nap::prevent();
}

Potential improvements

  • The C helper could be replaced by using/adapting the audio_thread_priority crate, which appears to be doing something very similar.

License

MIT. See LICENSE.md for details.

About

Control App Nap on macOS systems

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published