From 4ac4ddcd446ffb5bf543ccb8a7a676c5ce502485 Mon Sep 17 00:00:00 2001 From: Sakooooo <78461130+Sakooooo@users.noreply.github.com> Date: Wed, 16 Oct 2024 15:35:40 +0400 Subject: [PATCH] woke agenda --- config/ags/config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/ags/config.js b/config/ags/config.js index 8700e8ff..5e3dc92b 100644 --- a/config/ags/config.js +++ b/config/ags/config.js @@ -174,7 +174,7 @@ function BatteryLabel() { const percent = battery.bind("percent").as(x => x.toString()) + "%"; function getIcon() { - const icon = [100, 50, 30, 10].find(threshold => threshold <= battery.percent); + const icon = [80, 50, 30, 10].find(threshold => threshold <= battery.percent); return `battery-${icons[icon]}-symbolic`; }