wluma 4.4.0

Automatic brightness adjustment based on screen contents and ALS
1
2
3
4
5
6
7
8
use crate::predictor::Controller;

pub mod none;
pub mod wlroots;

pub trait Capturer {
    fn run(&self, output_name: &str, controller: Controller);
}