From 40ab13ab26eb54a79533a1a04b0b7bf4110b6446 Mon Sep 17 00:00:00 2001 From: Makesesama Date: Mon, 29 Sep 2025 10:12:12 +0200 Subject: [PATCH] fix: really run battery updates --- bar/modules/battery.py | 1 + 1 file changed, 1 insertion(+) diff --git a/bar/modules/battery.py b/bar/modules/battery.py index ebc5b39..029df20 100644 --- a/bar/modules/battery.py +++ b/bar/modules/battery.py @@ -11,6 +11,7 @@ class BatteryProvider: self.bat_percent = 0.0 self.bat_charging = None + self._update() GLib.timeout_add_seconds(1, self._update) def _update(self):