wluma 4.4.0

Automatic brightness adjustment based on screen contents and ALS
1
2
3
4
5
6
7
8
9
10
use std::error::Error;

#[derive(Default)]
pub struct Als {}

impl super::Als for Als {
    fn get(&self) -> Result<String, Box<dyn Error>> {
        Ok("none".to_string())
    }
}