From e86e7344f32ba0213365a2198b757eda34eaa899 Mon Sep 17 00:00:00 2001 From: LemmyCook Date: Thu, 28 Aug 2025 11:10:55 -0400 Subject: [PATCH] ArchUpdater: better icons (take2) --- Modules/ArchUpdaterPanel/ArchUpdaterPanel.qml | 4 ++-- Modules/Bar/Widgets/ArchUpdater.qml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Modules/ArchUpdaterPanel/ArchUpdaterPanel.qml b/Modules/ArchUpdaterPanel/ArchUpdaterPanel.qml index f1cb5eb..609ee3f 100644 --- a/Modules/ArchUpdaterPanel/ArchUpdaterPanel.qml +++ b/Modules/ArchUpdaterPanel/ArchUpdaterPanel.qml @@ -34,7 +34,7 @@ NPanel { spacing: Style.marginM * scaling NIcon { - text: "system_update" + text: "system_update_alt" font.pointSize: Style.fontSizeXXL * scaling color: Color.mPrimary } @@ -192,7 +192,7 @@ NPanel { } NIconButton { - icon: ArchUpdaterService.updateInProgress ? "hourglass_empty" : "filter_none" + icon: ArchUpdaterService.updateInProgress ? "hourglass_empty" : "system_update_alt" tooltipText: ArchUpdaterService.updateInProgress ? "Update in progress..." : "Update all packages" enabled: !ArchUpdaterService.updateInProgress onClicked: { diff --git a/Modules/Bar/Widgets/ArchUpdater.qml b/Modules/Bar/Widgets/ArchUpdater.qml index 9fc9522..90cedb7 100644 --- a/Modules/Bar/Widgets/ArchUpdater.qml +++ b/Modules/Bar/Widgets/ArchUpdater.qml @@ -33,7 +33,7 @@ NIconButton { return "sync" } if (ArchUpdaterService.totalUpdates > 0) { - return "filter_none" + return "system_update_alt" } return "task_alt" }