From 9e3c2fdd7ba7a8653a88d2e5200fe5b5959ebfd2 Mon Sep 17 00:00:00 2001 From: end-4 <97237370+end-4@users.noreply.github.com> Date: Fri, 15 Mar 2024 22:59:05 +0700 Subject: [PATCH] use battery icon (#325) --- .config/ags/modules/bar/normal/system.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/ags/modules/bar/normal/system.js b/.config/ags/modules/bar/normal/system.js index 166afcacb..c7ec83dd6 100644 --- a/.config/ags/modules/bar/normal/system.js +++ b/.config/ags/modules/bar/normal/system.js @@ -108,7 +108,7 @@ const BarBattery = () => Box({ className: 'bar-batt', homogeneous: true, children: [ - MaterialIcon('settings_heart', 'small'), + MaterialIcon('battery_full', 'small'), ], setup: (self) => self.hook(Battery, box => { box.toggleClassName('bar-batt-low', Battery.percent <= userOptions.battery.low);