battery-notify | Tests

battery-notify is a small, Linux-only program that sends notifications on changes to system battery state.

Installation

cargo install battery-notify

If you don't want to use warn_on_mons_with_no_ac, you can compile with --no-default-features to avoid depending on x11rb.

Features

Usage

Run battery-notify. You'll also need a notification daemon capable of disabling Desktop Notifications, like dunst or similar.

Configuration

You can configure battery-notify at ~/.config/battery-notify/config.toml -- on first run, this will be populated with a basic config if it doesn't exist.

The default config is:

```toml

How often to check battery status, in seconds.

interval_secs = 30

At what percentage of battery capacity to notify about low battery.

low_pct = 40

At what percentage of battery capacity to notify and run sleep_command.

sleep_pct = 15

The command to run when sleeping. Bear in mind that if you run as an

unprivileged user, you may need to consider elevation, either with NOPASSWD

or things like polkit.

sleep_command = 'systemctl suspend'

If this many monitors are connected (that is, plugged in -- they can be off)

and we are discharging, show a warning. Intended to avoid cases where power

is inadvertently disconnected at a desk.

warnonmonswithno_ac = 2 ```