battery: Use settings_daemon for display brightness

This shares a subscription with cosmic-osd, avoiding some duplication.
It's also important that things like selection of the display brightness
device are done consistency, and handling this in cosmic-settings-daemon
is one way to ensure consistency.
This commit is contained in:
Ian Douglas Scott 2024-06-28 13:52:18 -07:00 committed by Ian Douglas Scott
parent 78b734afc2
commit 4b83609ee8
4 changed files with 76 additions and 223 deletions

29
Cargo.lock generated
View file

@ -5,12 +5,12 @@ version = 3
[[package]] [[package]]
name = "accesskit" name = "accesskit"
version = "0.12.2" version = "0.12.2"
source = "git+https://github.com/wash2/accesskit.git?branch=winit-0.29#5f9b61c8264000d001499c902562422e13efa7a8" source = "git+https://github.com/wash2/accesskit.git?branch=winit-0.29#26f729169cd849970af02be62289606c63572d2d"
[[package]] [[package]]
name = "accesskit_consumer" name = "accesskit_consumer"
version = "0.17.0" version = "0.17.0"
source = "git+https://github.com/wash2/accesskit.git?branch=winit-0.29#5f9b61c8264000d001499c902562422e13efa7a8" source = "git+https://github.com/wash2/accesskit.git?branch=winit-0.29#26f729169cd849970af02be62289606c63572d2d"
dependencies = [ dependencies = [
"accesskit", "accesskit",
] ]
@ -18,7 +18,7 @@ dependencies = [
[[package]] [[package]]
name = "accesskit_unix" name = "accesskit_unix"
version = "0.7.1" version = "0.7.1"
source = "git+https://github.com/wash2/accesskit.git?branch=winit-0.29#5f9b61c8264000d001499c902562422e13efa7a8" source = "git+https://github.com/wash2/accesskit.git?branch=winit-0.29#26f729169cd849970af02be62289606c63572d2d"
dependencies = [ dependencies = [
"accesskit", "accesskit",
"accesskit_consumer", "accesskit_consumer",
@ -1238,7 +1238,7 @@ dependencies = [
[[package]] [[package]]
name = "cosmic-dbus-networkmanager" name = "cosmic-dbus-networkmanager"
version = "0.1.0" version = "0.1.0"
source = "git+https://github.com/pop-os/dbus-settings-bindings#badfc6a0bbe7c93927fe32692795699a675ae4c4" source = "git+https://github.com/pop-os/dbus-settings-bindings#1fdfcc8045e6732fc54b2c945008e89999a6cf71"
dependencies = [ dependencies = [
"bitflags 2.5.0", "bitflags 2.5.0",
"derive_builder", "derive_builder",
@ -1316,7 +1316,7 @@ dependencies = [
[[package]] [[package]]
name = "cosmic-settings-daemon" name = "cosmic-settings-daemon"
version = "0.1.0" version = "0.1.0"
source = "git+https://github.com/pop-os/dbus-settings-bindings#badfc6a0bbe7c93927fe32692795699a675ae4c4" source = "git+https://github.com/pop-os/dbus-settings-bindings#1fdfcc8045e6732fc54b2c945008e89999a6cf71"
dependencies = [ dependencies = [
"zbus 4.2.2", "zbus 4.2.2",
] ]
@ -1324,7 +1324,7 @@ dependencies = [
[[package]] [[package]]
name = "cosmic-settings-subscriptions" name = "cosmic-settings-subscriptions"
version = "0.1.0" version = "0.1.0"
source = "git+https://github.com/pop-os/cosmic-settings-subscriptions#a223eb4d32773e7b1170696f8b2d2d7ab54fa2e1" source = "git+https://github.com/pop-os/cosmic-settings-subscriptions#3a4e58559149fd5bf4d1d2c93229b2920ce03695"
dependencies = [ dependencies = [
"futures", "futures",
"iced_futures", "iced_futures",
@ -1332,6 +1332,7 @@ dependencies = [
"log", "log",
"rustix 0.38.34", "rustix 0.38.34",
"tokio", "tokio",
"tokio-stream",
"upower_dbus", "upower_dbus",
"zbus 4.2.2", "zbus 4.2.2",
] ]
@ -1510,7 +1511,7 @@ version = "0.19.0"
source = "git+https://github.com/gfx-rs/wgpu?rev=20fda69#20fda698341efbdc870b8027d6d49f5bf3f36109" source = "git+https://github.com/gfx-rs/wgpu?rev=20fda69#20fda698341efbdc870b8027d6d49f5bf3f36109"
dependencies = [ dependencies = [
"bitflags 2.5.0", "bitflags 2.5.0",
"libloading 0.8.3", "libloading 0.7.4",
"winapi", "winapi",
] ]
@ -1773,7 +1774,7 @@ version = "0.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "330c60081dcc4c72131f8eb70510f1ac07223e5d4163db481a04a0befcffa412" checksum = "330c60081dcc4c72131f8eb70510f1ac07223e5d4163db481a04a0befcffa412"
dependencies = [ dependencies = [
"libloading 0.8.3", "libloading 0.7.4",
] ]
[[package]] [[package]]
@ -2607,7 +2608,7 @@ dependencies = [
"bitflags 2.5.0", "bitflags 2.5.0",
"com", "com",
"libc", "libc",
"libloading 0.8.3", "libloading 0.7.4",
"thiserror", "thiserror",
"widestring", "widestring",
"winapi", "winapi",
@ -4023,7 +4024,7 @@ dependencies = [
[[package]] [[package]]
name = "mpris2-zbus" name = "mpris2-zbus"
version = "0.1.0" version = "0.1.0"
source = "git+https://github.com/pop-os/dbus-settings-bindings#badfc6a0bbe7c93927fe32692795699a675ae4c4" source = "git+https://github.com/pop-os/dbus-settings-bindings#1fdfcc8045e6732fc54b2c945008e89999a6cf71"
dependencies = [ dependencies = [
"futures-util", "futures-util",
"serde", "serde",
@ -5308,7 +5309,7 @@ checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67"
[[package]] [[package]]
name = "smithay-client-toolkit" name = "smithay-client-toolkit"
version = "0.18.0" version = "0.18.0"
source = "git+https://github.com/smithay/client-toolkit//?rev=3bed072#3bed072b966022f5f929d12f3aff089b1ace980b" source = "git+https://github.com/smithay/client-toolkit?rev=3bed072#3bed072b966022f5f929d12f3aff089b1ace980b"
dependencies = [ dependencies = [
"bitflags 2.5.0", "bitflags 2.5.0",
"bytemuck", "bytemuck",
@ -5533,7 +5534,7 @@ dependencies = [
[[package]] [[package]]
name = "switcheroo-control" name = "switcheroo-control"
version = "0.1.0" version = "0.1.0"
source = "git+https://github.com/pop-os/dbus-settings-bindings#badfc6a0bbe7c93927fe32692795699a675ae4c4" source = "git+https://github.com/pop-os/dbus-settings-bindings#1fdfcc8045e6732fc54b2c945008e89999a6cf71"
dependencies = [ dependencies = [
"zbus 4.2.2", "zbus 4.2.2",
] ]
@ -6077,7 +6078,7 @@ checksum = "f962df74c8c05a667b5ee8bcf162993134c104e96440b663c8daa176dc772d8c"
[[package]] [[package]]
name = "upower_dbus" name = "upower_dbus"
version = "0.3.2" version = "0.3.2"
source = "git+https://github.com/pop-os/dbus-settings-bindings?branch=upower#eb5cd58587db538fee38da45d560dc92631b8f99" source = "git+https://github.com/pop-os/dbus-settings-bindings#1fdfcc8045e6732fc54b2c945008e89999a6cf71"
dependencies = [ dependencies = [
"serde", "serde",
"serde_repr", "serde_repr",
@ -6536,7 +6537,7 @@ dependencies = [
"js-sys", "js-sys",
"khronos-egl", "khronos-egl",
"libc", "libc",
"libloading 0.8.3", "libloading 0.7.4",
"log", "log",
"metal", "metal",
"naga", "naga",

View file

@ -2,9 +2,6 @@
// SPDX-License-Identifier: GPL-3.0-only // SPDX-License-Identifier: GPL-3.0-only
use crate::backend::{power_profile_subscription, Power, PowerProfileRequest, PowerProfileUpdate}; use crate::backend::{power_profile_subscription, Power, PowerProfileRequest, PowerProfileUpdate};
use crate::backlight::{
screen_backlight_subscription, ScreenBacklightRequest, ScreenBacklightUpdate,
};
use crate::config; use crate::config;
use crate::dgpu::{dgpu_subscription, Entry, GpuUpdate}; use crate::dgpu::{dgpu_subscription, Entry, GpuUpdate};
use crate::fl; use crate::fl;
@ -28,9 +25,14 @@ use cosmic::iced_widget::{Column, Row};
use cosmic::widget::{divider, horizontal_space, icon, scrollable, vertical_space}; use cosmic::widget::{divider, horizontal_space, icon, scrollable, vertical_space};
use cosmic::Command; use cosmic::Command;
use cosmic::{Element, Theme}; use cosmic::{Element, Theme};
use cosmic_settings_subscriptions::upower::{ use cosmic_settings_subscriptions::{
device::{device_subscription, DeviceDbusEvent}, settings_daemon,
kbdbacklight::{kbd_backlight_subscription, KeyboardBacklightRequest, KeyboardBacklightUpdate}, upower::{
device::{device_subscription, DeviceDbusEvent},
kbdbacklight::{
kbd_backlight_subscription, KeyboardBacklightRequest, KeyboardBacklightUpdate,
},
},
}; };
use cosmic_time::{anim, chain, id, once_cell::sync::Lazy, Instant, Timeline}; use cosmic_time::{anim, chain, id, once_cell::sync::Lazy, Instant, Timeline};
@ -79,14 +81,16 @@ struct CosmicBatteryApplet {
gpus: HashMap<PathBuf, GPUData>, gpus: HashMap<PathBuf, GPUData>,
time_remaining: Duration, time_remaining: Duration,
kbd_brightness: Option<f64>, kbd_brightness: Option<f64>,
screen_brightness: f64, max_screen_brightness: i32,
screen_brightness: i32,
popup: Option<window::Id>, popup: Option<window::Id>,
screen_sender: Option<UnboundedSender<ScreenBacklightRequest>>, settings_daemon_sender: Option<UnboundedSender<settings_daemon::Request>>,
kbd_sender: Option<UnboundedSender<KeyboardBacklightRequest>>, kbd_sender: Option<UnboundedSender<KeyboardBacklightRequest>>,
power_profile: Power, power_profile: Power,
power_profile_sender: Option<UnboundedSender<PowerProfileRequest>>, power_profile_sender: Option<UnboundedSender<PowerProfileRequest>>,
timeline: Timeline, timeline: Timeline,
token_tx: Option<calloop::channel::Sender<TokenRequest>>, token_tx: Option<calloop::channel::Sender<TokenRequest>>,
zbus_connection: Option<zbus::Connection>,
} }
impl CosmicBatteryApplet { impl CosmicBatteryApplet {
@ -119,14 +123,18 @@ impl CosmicBatteryApplet {
format!("cosmic-applet-battery-level-{battery_percent}-{limited}{charging}symbolic",); format!("cosmic-applet-battery-level-{battery_percent}-{limited}{charging}symbolic",);
} }
fn update_display(&mut self, mut percent: f64) { fn screen_brightness_percent(&self) -> f64 {
percent = percent.clamp(0.01, 1.0); (self.screen_brightness as f64 / self.max_screen_brightness.max(1) as f64).clamp(0.01, 1.0)
self.screen_brightness = percent; }
let screen_brightness = if self.screen_brightness < 0.011 {
fn update_display(&mut self) {
let percent = self.screen_brightness_percent();
let screen_brightness = if percent < 0.011 {
"off" "off"
} else if self.screen_brightness < 0.333 { } else if percent < 0.333 {
"low" "low"
} else if self.screen_brightness < 0.666 { } else if percent < 0.666 {
"medium" "medium"
} else { } else {
"high" "high"
@ -156,9 +164,7 @@ enum Message {
SetScreenBrightness(i32), SetScreenBrightness(i32),
SetChargingLimit(chain::Toggler, bool), SetChargingLimit(chain::Toggler, bool),
UpdateKbdBrightness(Option<f64>), UpdateKbdBrightness(Option<f64>),
UpdateScreenBrightness(f64),
InitKbdBacklight(UnboundedSender<KeyboardBacklightRequest>), InitKbdBacklight(UnboundedSender<KeyboardBacklightRequest>),
InitScreenBacklight(UnboundedSender<ScreenBacklightRequest>, f64),
GpuOn(PathBuf, String, Option<Vec<Entry>>), GpuOn(PathBuf, String, Option<Vec<Entry>>),
GpuOff(PathBuf), GpuOff(PathBuf),
ToggleGpuApps(PathBuf), ToggleGpuApps(PathBuf),
@ -169,6 +175,8 @@ enum Message {
Frame(Instant), Frame(Instant),
Token(TokenUpdate), Token(TokenUpdate),
OpenSettings, OpenSettings,
SettingsDaemon(settings_daemon::Event),
ZbusConnection(zbus::Result<zbus::Connection>),
} }
impl cosmic::Application for CosmicBatteryApplet { impl cosmic::Application for CosmicBatteryApplet {
@ -193,7 +201,9 @@ impl cosmic::Application for CosmicBatteryApplet {
..Default::default() ..Default::default()
}, },
Command::none(), cosmic::iced::Command::perform(zbus::Connection::session(), |res| {
cosmic::app::Message::App(Message::ZbusConnection(res))
}),
) )
} }
@ -219,9 +229,14 @@ impl cosmic::Application for CosmicBatteryApplet {
} }
} }
Message::SetScreenBrightness(brightness) => { Message::SetScreenBrightness(brightness) => {
self.update_display((brightness as f64 / 100.0).clamp(0.01, 1.0)); let brightness = ((brightness as f64 / 100.0) * self.max_screen_brightness.max(1) as f64) as i32;
if let Some(tx) = &self.screen_sender { self.screen_brightness = brightness;
let _ = tx.send(ScreenBacklightRequest::Set(self.screen_brightness)); self.update_display();
//self.update_display((brightness as f64 / 100.0).clamp(0.01, 1.0));
if let Some(tx) = &self.settings_daemon_sender {
let _ = tx.send(settings_daemon::Request::SetDisplayBrightness(
self.screen_brightness,
));
} }
} }
Message::SetChargingLimit(chain, enable) => { Message::SetChargingLimit(chain, enable) => {
@ -238,9 +253,6 @@ impl cosmic::Application for CosmicBatteryApplet {
if let Some(tx) = &self.kbd_sender { if let Some(tx) = &self.kbd_sender {
let _ = tx.send(KeyboardBacklightRequest::Get); let _ = tx.send(KeyboardBacklightRequest::Get);
} }
if let Some(tx) = &self.screen_sender {
let _ = tx.send(ScreenBacklightRequest::Get);
}
self.timeline = Timeline::new(); self.timeline = Timeline::new();
let new_id = window::Id::unique(); let new_id = window::Id::unique();
@ -278,14 +290,6 @@ impl cosmic::Application for CosmicBatteryApplet {
Message::InitKbdBacklight(tx) => { Message::InitKbdBacklight(tx) => {
self.kbd_sender = Some(tx); self.kbd_sender = Some(tx);
} }
Message::InitScreenBacklight(tx, brightness) => {
let _ = tx.send(ScreenBacklightRequest::Get);
self.screen_sender = Some(tx);
self.update_display(brightness);
}
Message::UpdateScreenBrightness(b) => {
self.update_display(b);
}
Message::InitProfile(tx, profile) => { Message::InitProfile(tx, profile) => {
self.power_profile_sender.replace(tx); self.power_profile_sender.replace(tx);
self.power_profile = profile; self.power_profile = profile;
@ -295,9 +299,6 @@ impl cosmic::Application for CosmicBatteryApplet {
if let Some(tx) = &self.kbd_sender { if let Some(tx) = &self.kbd_sender {
let _ = tx.send(KeyboardBacklightRequest::Get); let _ = tx.send(KeyboardBacklightRequest::Get);
} }
if let Some(tx) = &self.screen_sender {
let _ = tx.send(ScreenBacklightRequest::Get);
}
} }
Message::SelectProfile(profile) => { Message::SelectProfile(profile) => {
if let Some(tx) = self.power_profile_sender.as_ref() { if let Some(tx) = self.power_profile_sender.as_ref() {
@ -360,6 +361,24 @@ impl cosmic::Application for CosmicBatteryApplet {
data.toggled = !data.toggled; data.toggled = !data.toggled;
} }
} }
Message::ZbusConnection(Err(err)) => {
tracing::error!("Failed to connect to session dbus: {}", err);
}
Message::ZbusConnection(Ok(conn)) => {
self.zbus_connection = Some(conn);
}
Message::SettingsDaemon(event) => match dbg!(event) {
settings_daemon::Event::Sender(tx) => {
self.settings_daemon_sender = Some(tx);
}
settings_daemon::Event::MaxDisplayBrightness(max_brightness) => {
// XXX option
self.max_screen_brightness = max_brightness;
}
settings_daemon::Event::DisplayBrightness(brightness) => {
self.screen_brightness = brightness;
}
},
} }
Command::none() Command::none()
} }
@ -513,10 +532,10 @@ impl cosmic::Application for CosmicBatteryApplet {
.symbolic(true), .symbolic(true),
slider( slider(
1..=100, 1..=100,
(self.screen_brightness * 100.0) as i32, (dbg!(self.screen_brightness_percent()) * 100.0) as i32,
Message::SetScreenBrightness Message::SetScreenBrightness
), ),
text(format!("{:.0}%", self.screen_brightness * 100.0)) text(format!("{:.0}%", self.screen_brightness_percent() * 100.))
.size(16) .size(16)
.width(Length::Fixed(40.0)) .width(Length::Fixed(40.0))
.horizontal_alignment(Horizontal::Right) .horizontal_alignment(Horizontal::Right)
@ -655,7 +674,7 @@ impl cosmic::Application for CosmicBatteryApplet {
} }
fn subscription(&self) -> Subscription<Message> { fn subscription(&self) -> Subscription<Message> {
Subscription::batch(vec![ let mut subscriptions = vec![
device_subscription(0).map( device_subscription(0).map(
|DeviceDbusEvent::Update { |DeviceDbusEvent::Update {
on_battery, on_battery,
@ -671,10 +690,6 @@ impl cosmic::Application for CosmicBatteryApplet {
KeyboardBacklightUpdate::Brightness(b) => Message::UpdateKbdBrightness(b), KeyboardBacklightUpdate::Brightness(b) => Message::UpdateKbdBrightness(b),
KeyboardBacklightUpdate::Sender(tx) => Message::InitKbdBacklight(tx), KeyboardBacklightUpdate::Sender(tx) => Message::InitKbdBacklight(tx),
}), }),
screen_backlight_subscription(0).map(|e| match e {
ScreenBacklightUpdate::Update(b) => Message::UpdateScreenBrightness(b),
ScreenBacklightUpdate::Init(tx, b) => Message::InitScreenBacklight(tx, b),
}),
power_profile_subscription(0).map(|event| match event { power_profile_subscription(0).map(|event| match event {
PowerProfileUpdate::Update { profile } => Message::Profile(profile), PowerProfileUpdate::Update { profile } => Message::Profile(profile),
PowerProfileUpdate::Init(tx, p) => Message::InitProfile(p, tx), PowerProfileUpdate::Init(tx, p) => Message::InitProfile(p, tx),
@ -688,7 +703,11 @@ impl cosmic::Application for CosmicBatteryApplet {
.as_subscription() .as_subscription()
.map(|(_, now)| Message::Frame(now)), .map(|(_, now)| Message::Frame(now)),
activation_token_subscription(0).map(Message::Token), activation_token_subscription(0).map(Message::Token),
]) ];
if let Some(conn) = self.zbus_connection.clone() {
subscriptions.push(settings_daemon::subscription(conn).map(Message::SettingsDaemon));
}
Subscription::batch(subscriptions)
} }
fn on_close_requested(&self, id: window::Id) -> Option<Message> { fn on_close_requested(&self, id: window::Id) -> Option<Message> {

View file

@ -1,165 +0,0 @@
// Copyright 2023 System76 <info@system76.com>
// SPDX-License-Identifier: GPL-3.0-only
// TODO: use udev to monitor for brightness changes?
// How should key bindings be handled? Need something like gnome-settings-daemon?
use std::{
fmt::Debug,
fs::File,
hash::Hash,
io::{self, Read},
os::unix::ffi::OsStrExt,
path::Path,
str::{self, FromStr},
};
use cosmic::iced::{self, futures::SinkExt, subscription};
use tokio::sync::mpsc::{unbounded_channel, UnboundedReceiver, UnboundedSender};
const BACKLIGHT_SYSDIR: &str = "/sys/class/backlight";
#[zbus::proxy(
default_service = "org.freedesktop.login1",
interface = "org.freedesktop.login1.Session",
default_path = "/org/freedesktop/login1/session/auto"
)]
trait LogindSession {
fn set_brightness(&self, subsystem: &str, name: &str, brightness: u32) -> zbus::Result<()>;
}
#[derive(Clone)]
pub struct Backlight(String);
impl Backlight {
pub async fn brightness(&self) -> Option<u32> {
self.prop("brightness").await
}
// XXX cache value. Async?
pub async fn max_brightness(&self) -> Option<u32> {
self.prop("max_brightness").await
}
pub async fn set_brightness(
&self,
session: &LogindSessionProxy<'_>,
value: u32,
) -> zbus::Result<()> {
session.set_brightness("backlight", &self.0, value).await
}
async fn prop<T: FromStr>(&self, name: &str) -> Option<T> {
let path = Path::new(BACKLIGHT_SYSDIR).join(&self.0).join(name);
let mut file = File::open(path).ok()?;
let mut s = String::new();
file.read_to_string(&mut s).ok()?;
s.trim().parse().ok()
}
}
// Choose backlight with most "precision". This is what `light` does.
pub async fn backlight() -> io::Result<Option<Backlight>> {
let mut best_backlight = None;
let mut best_max_brightness = 0;
let mut dir_stream = tokio::fs::read_dir(BACKLIGHT_SYSDIR).await?;
while let Ok(Some(entry)) = dir_stream.next_entry().await {
if let Ok(filename) = str::from_utf8(entry.file_name().as_bytes()) {
let backlight = Backlight(filename.to_string());
if let Some(max_brightness) = backlight.max_brightness().await {
if max_brightness > best_max_brightness {
best_backlight = Some(backlight);
best_max_brightness = max_brightness;
}
}
}
}
Ok(best_backlight)
}
pub fn screen_backlight_subscription<I: 'static + Hash + Copy + Send + Sync + Debug>(
id: I,
) -> iced::Subscription<ScreenBacklightUpdate> {
subscription::channel(id, 50, move |mut output| async move {
let mut state = State::Ready;
loop {
state = start_listening(state, &mut output).await;
}
})
}
pub enum State {
Ready,
Waiting(
Backlight,
LogindSessionProxy<'static>,
UnboundedReceiver<ScreenBacklightRequest>,
),
Finished,
}
async fn start_listening(
state: State,
output: &mut futures::channel::mpsc::Sender<ScreenBacklightUpdate>,
) -> State {
match state {
State::Ready => {
let conn = match zbus::Connection::system().await {
Ok(conn) => conn,
Err(_) => return State::Finished,
};
let screen_proxy = match LogindSessionProxy::builder(&conn).build().await {
Ok(p) => p,
Err(_) => return State::Finished,
};
let backlight = match backlight().await {
Ok(Some(b)) => b,
_ => return State::Finished,
};
let (tx, rx) = unbounded_channel();
let b = (backlight.brightness().await.unwrap_or_default() as f64
/ backlight.max_brightness().await.unwrap_or(1) as f64)
.clamp(0., 1.);
_ = output.send(ScreenBacklightUpdate::Init(tx, b)).await;
State::Waiting(backlight, screen_proxy, rx)
}
State::Waiting(backlight, proxy, mut rx) => match rx.recv().await {
Some(req) => match req {
ScreenBacklightRequest::Get => {
if let Some(max_brightness) = backlight.max_brightness().await {
let value = (backlight.brightness().await.unwrap_or_default() as f64
/ max_brightness as f64)
.clamp(0., 1.);
_ = output.send(ScreenBacklightUpdate::Update(value)).await;
}
State::Waiting(backlight, proxy, rx)
}
ScreenBacklightRequest::Set(value) => {
if let Some(max_brightness) = backlight.max_brightness().await {
let value = value.clamp(0., 1.) * (max_brightness as f64);
let value = value.round() as u32;
let _ = backlight.set_brightness(&proxy, value).await;
}
State::Waiting(backlight, proxy, rx)
}
},
None => State::Finished,
},
State::Finished => iced::futures::future::pending().await,
}
}
#[derive(Debug, Clone)]
pub enum ScreenBacklightUpdate {
Update(f64),
Init(UnboundedSender<ScreenBacklightRequest>, f64),
}
#[derive(Debug, Clone)]
pub enum ScreenBacklightRequest {
Get,
Set(f64),
}

View file

@ -1,8 +1,6 @@
// Copyright 2023 System76 <info@system76.com> // Copyright 2023 System76 <info@system76.com>
// SPDX-License-Identifier: GPL-3.0-only // SPDX-License-Identifier: GPL-3.0-only
#[rustfmt::skip]
mod backlight;
mod app; mod app;
mod backend; mod backend;
mod config; mod config;