From 5dc2e4794274b59df379c99c2e407e51e778a76e Mon Sep 17 00:00:00 2001 From: Sakooooo <78461130+Sakooooo@users.noreply.github.com> Date: Wed, 16 Oct 2024 15:32:51 +0400 Subject: [PATCH] (config) ags: oops --- 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 482ac17c..8700e8ff 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, 25, 0].find(threshold => threshold <= battery.percent); + const icon = [100, 50, 30, 10].find(threshold => threshold <= battery.percent); return `battery-${icons[icon]}-symbolic`; }