monitor-input 1.2.10

A command line tool to change input sources of display monitors with DDC/CI.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! This crate contains a command line tool and its library
//! to change input sources of display monitors with [DDC/CI].
//!
//! * The [`Cli`] struct provides the command line tool.
//! * The [`Monitor`] struct provides functions to
//!   change input sources of display monitors.
//!
//! [DDC/CI]: https://en.wikipedia.org/wiki/Display_Data_Channel
mod cli;
pub use cli::*;

mod input_source;
pub use input_source::*;

mod monitor;
pub use monitor::*;