From c6eb613e38a8a6819614ce693be651e022581cf7 Mon Sep 17 00:00:00 2001 From: quadbyte Date: Wed, 20 Aug 2025 19:35:41 -0400 Subject: [PATCH] IdleInhibitor: always use the coffee cup icon, the coloring takes care of the rest --- Modules/SidePanel/Cards/UtilitiesCard.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/SidePanel/Cards/UtilitiesCard.qml b/Modules/SidePanel/Cards/UtilitiesCard.qml index 1fe3e62..8d3b67a 100644 --- a/Modules/SidePanel/Cards/UtilitiesCard.qml +++ b/Modules/SidePanel/Cards/UtilitiesCard.qml @@ -36,7 +36,7 @@ NBox { // Idle Inhibitor NIconButton { - icon: IdleInhibitorService.isInhibited ? "coffee" : "bedtime" + icon: "coffee" tooltipText: IdleInhibitorService.isInhibited ? "Disable Keep Awake" : "Enable Keep Awake" colorBg: IdleInhibitorService.isInhibited ? Color.mPrimary : Color.mSurfaceVariant colorFg: IdleInhibitorService.isInhibited ? Color.mOnPrimary : Color.mPrimary