dim_screen/
lib.rs

1pub mod dim;
2pub mod opts;
3
4pub const DEFAULT_DURATION: u64 = 30;
5pub const DEFAULT_ALPHA: f32 = 0.5;
6
7pub const CONFIG_FILENAME: &str = "config.toml";
8
9/// Default window size in width and height, in logical pixels
10pub const INIT_SIZE: u32 = 100;