#battery #freebsd #macos #linux #windows #linux-macos

starship-battery

Cross-platform information about the notebook batteries

5 releases

0.8.3 Apr 8, 2024
0.8.2 Aug 5, 2023
0.8.1 Jun 8, 2023
0.8.0 Apr 12, 2023
0.7.9 Nov 9, 2021

#51 in Operating systems

Download history 3089/week @ 2023-12-24 3009/week @ 2023-12-31 3060/week @ 2024-01-07 3288/week @ 2024-01-14 4616/week @ 2024-01-21 4639/week @ 2024-01-28 4239/week @ 2024-02-04 3756/week @ 2024-02-11 3604/week @ 2024-02-18 3494/week @ 2024-02-25 3459/week @ 2024-03-03 3077/week @ 2024-03-10 4156/week @ 2024-03-17 4420/week @ 2024-03-24 4071/week @ 2024-03-31 3493/week @ 2024-04-07

16,480 downloads per month
Used in 5 crates

ISC license

140KB
3.5K SLoC

battery

Latest Version Latest Version Build Status Minimum rustc version ISC licensed

Rust crate providing cross-platform information about the notebook batteries.

Table of contents

Overview

battery provides a cross-platform unified API to a notebook batteries state.

Its main goal is to wrap the OS-specific interfaces, cover all the hacks and legacy cases and get the batteries information (such as state of charge, energy rate, voltage and temperature) as a typed values, recalculated as necessary to be returned as a SI measurement units.

Supported platforms

  • Linux 2.6.39+
  • MacOS 10.10+
  • iOS
  • Windows 7+
  • FreeBSD
  • DragonFlyBSD

Do note that iOS implementation uses IOKit bindings, your application might be automatically rejected by Apple based on that fact. Use it on your own risk.

Install

As a prerequisite, battery crate requires at least Rustc version 1.69 or greater.

Add the following line into a Cargo.toml:

[dependencies]
battery = "0.7.8"

Examples

fn main() -> Result<(), battery::Error> {
    let manager = battery::Manager::new()?;

    for (idx, maybe_battery) in manager.batteries()?.enumerate() {
        let battery = maybe_battery?;
        println!("Battery #{}:", idx);
        println!("Vendor: {:?}", battery.vendor());
        println!("Model: {:?}", battery.model());
        println!("State: {:?}", battery.state());
        println!("Time to full charge: {:?}", battery.time_to_full());
        println!("");
    }

    Ok(())
}

See the battery/examples/ folder in the repository for additional examples.

Users

This an incomplete list of the battery crate users. If you are using it too, send me a message and I'll add your project here!

starship

starship is a Rust port of the minimalistic, powerful, and extremely customizable prompt Spaceship ZSH.
It is using the battery crate to show the the current battery level and status in a shell prompt.

Here is what @matchai says:

I really appreciate how easily we were able to get your library up and running! Battery APIs were a headache for us in predecessors of this project 😅

And there is this tweet also!

Dependencies

~1.1–2.1MB
~39K SLoC