5 unstable releases

0.3.2 Jan 9, 2023
0.3.1 Dec 5, 2022
0.3.0 Oct 3, 2022
0.2.0 Jan 5, 2022
0.1.0 May 9, 2018

#21 in #zbus

Download history 256/week @ 2024-07-21 292/week @ 2024-07-28 366/week @ 2024-08-04 478/week @ 2024-08-11 438/week @ 2024-08-18 242/week @ 2024-08-25 354/week @ 2024-09-01 372/week @ 2024-09-08 230/week @ 2024-09-15 434/week @ 2024-09-22 359/week @ 2024-09-29 302/week @ 2024-10-06 408/week @ 2024-10-13 174/week @ 2024-10-20 412/week @ 2024-10-27 175/week @ 2024-11-03

1,205 downloads per month
Used in 3 crates

MIT license

15KB
118 lines

upower-dbus

A Rust library which interfaces with UPower status information through dbus.

Examples

Detecting if the system is running on battery

extern crate upower_dbus;

use futures::stream::StreamExt;
use upower_dbus::UPowerProxy;

fn main() -> zbus::Result<()> {
    futures::executor::block_on(async move {
        let connection = zbus::Connection::system().await?;

        let upower = UPowerProxy::new(&connection).await?;

        println!("On Battery: {:?}", upower.on_battery().await);

        let mut stream = upower.receive_on_battery_changed().await;

        while let Some(event) = stream.next().await {
            println!("On Battery: {:?}", event.get().await);
        }

        Ok(())
    })
}

Getting the current battery status as a percentage

extern crate upower_dbus;

use upower_dbus::UPowerProxy;

fn main() -> zbus::Result<()> {
    futures::executor::block_on(async move {
        let connection = zbus::Connection::system().await?;

        let upower = UPowerProxy::new(&connection).await?;

        let device = upower.get_display_device().await?;

        println!("Battery: {:?}", device.percentage().await);

        Ok(())
    })
}

Dependencies

~12–26MB
~364K SLoC