nightlight 1.0.0

A CLI for configuring 'Night Shift' on macOS 🌕🌖🌗🌘🌑
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
extern crate objc;

#[link(name = "CoreBrightness", kind = "framework")]
unsafe extern "C" {}

mod client;
mod locale;
mod status;

pub use self::client::Client;
pub use self::locale::Locale;
pub use self::status::BlueLightStatus;