1 unstable release

0.0.1 Jan 14, 2021

#19 in #prevent

34 downloads per month

MIT license

6KB
70 lines

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.

Dependencies

~455–750KB
~16K SLoC