displayz 1.1.0

A CLI tool and library to control display settings on Windows written in Rust.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! A library to interact with the Windows API for display settings.
//!
//! This library provides an abstraction around some `winuser.h` calls relevant for modifying display settings.

mod display;
mod properties;
mod types;

#[cfg(feature = "json")]
pub mod json;

pub use display::*;
pub use properties::*;
pub use types::*;