brightwheel 0.1.3

Windows tray utility for DDC/CI monitor brightness and HDR control
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! `BrightWheel`'s Windows notification-area application.

#![windows_subsystem = "windows"]

mod gesture;
mod platform;
mod runtime;
mod tray_icon;

fn main() {
    if let Err(error) = runtime::run() {
        platform::show_error(&error.to_string());
    }
}