[AGS] QuickView: Use better battery icon

This commit is contained in:
Admin 2025-05-08 10:42:55 +02:00
parent 4fa7dc3c1a
commit e7f6be4291
2 changed files with 4 additions and 4 deletions

View File

@ -125,7 +125,7 @@ const BatteryWidget = () => {
if (battery.get_is_present()) { if (battery.get_is_present()) {
return ( return (
<image <image
iconName={bind(battery, "iconName").as(icon => icon)} iconName={bind(battery, "batteryIconName").as(icon => icon)}
cssClasses={["quick-view-symbol"]} cssClasses={["quick-view-symbol"]}
tooltipText={bind(battery, 'percentage').as(p => `${Math.round(p * 100)}%`)} tooltipText={bind(battery, 'percentage').as(p => `${Math.round(p * 100)}%`)}
></image> ></image>

View File

@ -1,5 +1,5 @@
$fg-color: #E6E6E6; $fg-color: #C8DCFF;
$bg-color: #141414; $bg-color: #0A0A0F;
$accent-color: #645B47; $accent-color: #645B47;
$accent-color-2: #593521; $accent-color-2: #593521;
$shadow-color: rgba(40, 40, 40, 0.3); $shadow-color: rgba(0, 0, 2, 0.3);