Skip to content

battery

Battery level, charging state, and a dropdown with power-profile controls.

Add it to your layout with battery:

toml
[[bar.layout]]
monitor = "*"
right = ["battery"]

General

FieldTypeDefaultDescription
level-iconsarray of string[...]Icons for battery levels from empty to full.
charging-iconstring"md-battery_android_frame_bolt-symbolic"Icon shown when battery is charging.
alert-iconstring"md-battery_android_alert-symbolic"Icon shown when battery is not present or in an error state.
border-showboolfalseDisplay border around button.
icon-showbooltrueDisplay module icon.
label-showbooltrueDisplay percentage label.
formatstring"{{ percent }}%"Format string for the label.
label-max-lengthu320Max label characters before truncation with ellipsis. Set to 0 to disable.
thresholdsarray of ThresholdEntry[]Dynamic color thresholds based on battery percentage.
More about level-icons

The percentage is divided evenly among icons. With 5 icons: 0-20% uses icons[0], 21-40% uses icons[1], etc.

More about format

Placeholders

  • {{ percent }} - Battery level (0-100)

Examples

  • "{{ percent }}%" - "45%"
More about thresholds

Entries are checked in order; the last matching entry wins for each color slot. Use below for low-value warnings (e.g., low battery).

Example

toml
[[modules.battery.thresholds]]
below = 40
icon-color = "status-warning"

[[modules.battery.thresholds]]
below = 20
icon-color = "status-error"
label-color = "status-error"

Colors

FieldTypeDefaultDescription
border-colorColorValue"yellow"Border color token.
icon-colorColorValue"auto"Icon foreground color. Auto selects based on variant for contrast.
icon-bg-colorColorValue"yellow"Icon container background color token.
label-colorColorValue"yellow"Label text color token.
button-bg-colorColorValue"bg-surface-elevated"Button background color token.

Click actions

FieldTypeDefaultDescription
left-clickClickAction"dropdown:battery"Action on left click.
right-clickClickAction""Action on right click.
middle-clickClickAction""Action on middle click.
scroll-upClickAction""Action on scroll up.
scroll-downClickAction""Action on scroll down.

Default configuration

toml
[modules.battery]
level-icons = [
    "md-battery_android_0-symbolic",
    "md-battery_android_frame_1-symbolic",
    "md-battery_android_frame_2-symbolic",
    "md-battery_android_frame_3-symbolic",
    "md-battery_android_frame_4-symbolic",
    "md-battery_android_frame_5-symbolic",
    "md-battery_android_frame_6-symbolic",
    "md-battery_android_frame_full-symbolic",
]
charging-icon = "md-battery_android_frame_bolt-symbolic"
alert-icon = "md-battery_android_alert-symbolic"
border-show = false
border-color = "yellow"
icon-show = true
icon-color = "auto"
icon-bg-color = "yellow"
label-show = true
label-color = "yellow"
format = "{{ percent }}%"
label-max-length = 0
button-bg-color = "bg-surface-elevated"
left-click = "dropdown:battery"
right-click = ""
middle-click = ""
scroll-up = ""
scroll-down = ""
thresholds = []

Released under the MIT License.