Module swaystatus::blocks::battery[][src]

Expand description

Information about the internal power supply

This block can display the current battery state (Full, Charging or Discharging), percentage charged and estimate time until (dis)charged for an internal power supply.

Configuration

KeyValuesRequiredDefault
deviceThe device in /sys/class/power_supply/ to read from. When using UPower, this can also be "DisplayDevice".NoAny battery device
driverOne of "sysfs" or "upower"No"sysfs"
intervalUpdate interval, in seconds. Only relevant for driver = "sysfs".No10
formatA string to customise the output of this block. See below for available placeholders.No“$percentage|”
full_formatSame as format but for when the battery is fullNo""
allow_missingDon’t display errors when the battery cannot be found. Only works with the sysfs driver.Nofalse
hide_missingCompletely hide this block if the battery cannot be found.Nofalse
hide_fullHide the block if battery is fullNofalse
infoMinimum battery level, where state is set to infoNo60
goodMinimum battery level, where state is set to goodNo60
warningMinimum battery level, where state is set to warningNo30
criticalMinimum battery level, where state is set to criticalNo15
full_thresholdPercentage at which the battery is considered full (full_format shown)No100
PlaceholderValueTypeUnit
percentageBattery level, in percentString or IntegerPercents
timeTime remaining until (dis)charge is complete. Presented only if battery’s status is (dis)charging.String-
powerPower consumption by the battery or from the power supply when chargingString or FloatWatts

Examples

Hide missing battery:

[block]
block = "battery"
hide_missing = true

Allow missing battery:

[block]
block = "battery"
format = "$percentage|N/A"
allow_missing = true

Icons Used

  • bat_charging
  • bat_not_available
  • “bat_10”,
  • “bat_20”,
  • “bat_30”,
  • “bat_40”,
  • “bat_50”,
  • “bat_60”,
  • “bat_70”,
  • “bat_80”,
  • “bat_90”,
  • “bat_full”,

Modules

DBus interface proxy for: org.freedesktop.UPower.Device and org.freedesktop.UPower

Structs

Represents a physical power supply device, as known to sysfs. https://www.kernel.org/doc/html/v5.15/power/power_supply_class.html

Enums

Constants

Ordered list of icons used to display battery charge

Path for the power supply devices

Traits

Functions