mundy

Crates.iomundy
lib.rsmundy
version0.1.2
sourcesrc
created_at2024-10-13 20:51:00.028526
updated_at2024-10-18 18:50:13.600872
descriptionReads various system-level accessibility and UI preferences
homepage
repositoryhttps://github.com/bash/mundy
max_upload_size
id1407672
size111,963
Tau Gärtli (bash)

documentation

README

mundy 🐋

Docs Crate Version

Your friendly neighbourhood whale crate for reading various system-level accessibility and UI preferences across platforms 🐋

The following preferences are supported:

  • AccentColor—The user's current system wide accent color preference.
  • ColorScheme—The user's preference for either light or dark mode.
  • Contrast—The user's preferred contrast level.
  • ReducedMotion—The user's reduced motion preference.
  • ReducedTransparency—The user's reduced transparency preference.

Example

use mundy::{Preferences, Interest};
use futures_lite::StreamExt as _;

// Interest tells mundy which preferences it should monitor for you.
// use `Interest::All` if you're interested in all preferences.
let mut stream = Preferences::stream(Interest::AccentColor);

async {
    while let Some(preferences) = stream.next().await {
        eprintln!("accent color: {:?}", preferences.accent_color);
    }
};

Docs

License

Licensed under the Apache License, Version 2.0 (license.txt or http://www.apache.org/licenses/LICENSE-2.0)

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be licensed as above, without any additional terms or conditions.

Commit count: 13

cargo fmt