Crates.io | batlimit |
lib.rs | batlimit |
version | |
source | src |
created_at | 2024-12-11 05:24:46.496404 |
updated_at | 2024-12-12 07:22:43.714358 |
description | Set battery charge limit on supported laptops on Linux with CLI |
homepage | |
repository | https://github.com/pepa65/batlimit |
max_upload_size | |
id | 1479595 |
Cargo.toml error: | TOML parse error at line 18, column 1 | 18 | autolib = false | ^^^^^^^ unknown field `autolib`, expected one of `name`, `version`, `edition`, `authors`, `description`, `readme`, `license`, `repository`, `homepage`, `documentation`, `build`, `resolver`, `links`, `default-run`, `default_dash_run`, `rust-version`, `rust_dash_version`, `rust_version`, `license-file`, `license_dash_file`, `license_file`, `licenseFile`, `license_capital_file`, `forced-target`, `forced_dash_target`, `autobins`, `autotests`, `autoexamples`, `autobenches`, `publish`, `metadata`, `keywords`, `categories`, `exclude`, `include` |
size | 0 |
Set battery charge limit on supported laptops on Linux with CLI
It is now widely acknowledged that the life span of Li-ion batteries is extended by not charging them to the max. An often recommended battery charge limit is 80.
5.4-rc1
or later (exposing the charge limit variable)systemd
version 244
or later (supporting the directives in the included systemd service)/sys/class/power_supply/BAT?/*
/etc/systemd/system/batlimit-TARGET.service
hibernate
, hybrid-sleep
, multi-user
, sleep
, suspend
, suspend-then-hibernate
asus-wmi
: https://github.com/torvalds/linux/blob/master/drivers/platform/x86/asus-wmi.cthinkpad_acpi
: https://github.com/torvalds/linux/blob/master/drivers/platform/x86/thinkpad_acpi.cdell-laptop
: https://github.com/torvalds/linux/blob/master/drivers/platform/x86/dell/dell-laptop.clg-laptop
: https://github.com/torvalds/linux/blob/master/drivers/platform/x86/lg-laptop.chuawei-wmi
: https://github.com/torvalds/linux/blob/master/drivers/platform/x86/huawei-wmi.csystem76_acpi
: https://github.com/torvalds/linux/blob/master/drivers/platform/x86/system76_acpi.cfujitsu-laptop
: https://github.com/torvalds/linux/blob/master/drivers/platform/x86/fujitsu-laptop.cmsi-ec
: https://github.com/torvalds/linux/blob/master/drivers/platform/x86/msi-ec.ctoshiba_acpi
: https://github.com/torvalds/linux/blob/master/drivers/platform/x86/toshiba_acpi.c
applesmc-next
: Needs to be compiled from https://github.com/c---/applesmc-nextinfo
works with any machine):
ASUS, Lenovo (ThinkPad), Dell, LG, Huawei, System76, Fujitsu, MSI, Toshiba and Intel Apple.info
: Show battery info (default).limit
: Set battery charge limit (needs root privileges), takes percentage as argument.persist
: Persist the charge limit through creating and enabling systemd services,
optionally takes percentage as argument for limit (needs root privileges).unpersist
: Unpersist the charge limit by disabling and removing systemd services (needs root privileges).completions
: Generate shell completions (bash, elvish, fish, powershell, zsh).batlimit u
(unpersisting the limit).wget https://github.com/pepa65/batlimit/releases/download/0.5.1/batlimit
sudo mv batlimit /usr/local/bin/
sudo chown root:root /usr/local/bin/batlimit
sudo chmod +x /usr/local/bin/batlimit
If not installed yet, install a Rust toolchain, see https://www.rust-lang.org/tools/install
cargo install batlimit --target=x86_64-unknown-linux-musl
cargo install --git https://github.com/pepa65/batlimit --target=x86_64-unknown-linux-musl
git clone https://github.com/pepa65/batlimit
cd batlimit
rustup target add x86_64-unknown-linux-musl
export RUSTFLAGS='-C target-feature=+crt-static'
cargo build --release --target=x86_64-unknown-linux-musl
For smaller binary size: upx --best --lzma target/x86_64-unknown-linux-musl/release/batlimit
Even without a full Rust toolchain, rust binaries can be installed with the static binary cargo-binstall
:
# Install cargo-binstall for Linux x86_64
# (Other versions are available at https://crates.io/crates/cargo-binstall)
wget github.com/cargo-bins/cargo-binstall/releases/latest/download/cargo-binstall-x86_64-unknown-linux-musl.tgz
tar xf cargo-binstall-x86_64-unknown-linux-musl.tgz
sudo chown root:root cargo-binstall
sudo mv cargo-binstall /usr/local/bin/
Install the musl binary: cargo-binstall batlimit
(Then batlimit
will be installed in ~/.cargo/bin/
which will need to be added to PATH
!)
batlimit 0.5.1 - Set battery charge limit on supported laptops on Linux with CLI
Usage: batlimit [COMMAND]
Commands:
info Print battery info (default command)
limit Set battery charge limit: PERCENT (1..100)
persist Persist charge limit with systemd: [PERCENT (1..100)]
unpersist Unpersist charge limit: disable and remove systemd services
completions Generate completions: SHELL (bash|elvish|fish|powershell|zsh)
help Print this message or the help of the given subcommand(s)
Options:
-h, --help Print help
-V, --version Print version
Root privileges required for: limit, persist & unpersist