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

#7 in #logind

Download history 106/week @ 2025-03-12 217/week @ 2025-03-19 96/week @ 2025-03-26 49/week @ 2025-04-02 248/week @ 2025-04-09 307/week @ 2025-04-16 498/week @ 2025-04-23 231/week @ 2025-04-30 248/week @ 2025-05-07 187/week @ 2025-05-14 105/week @ 2025-05-21 150/week @ 2025-05-28 242/week @ 2025-06-04 281/week @ 2025-06-11 275/week @ 2025-06-18 124/week @ 2025-06-25

959 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

~13–29MB
~417K SLoC