From 56aa6dc342e7c86e24e7ded86bffcf88d1e2fcc6 Mon Sep 17 00:00:00 2001 From: Damocles Date: Mon, 13 Apr 2026 16:33:49 +0200 Subject: [PATCH] idle inhibitor: accent color when inactive, orange warning when active --- modules/IdleInhibitor.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/IdleInhibitor.qml b/modules/IdleInhibitor.qml index 5a60515..2bb4104 100644 --- a/modules/IdleInhibitor.qml +++ b/modules/IdleInhibitor.qml @@ -5,7 +5,7 @@ import "." as M M.BarIcon { id: root - color: root.active ? (parent?.accentColor ?? M.Theme.base05) : M.Theme.base04 + color: root.active ? M.Theme.base09 : (parent?.accentColor ?? M.Theme.base05) tooltip: { const parts = ["Idle inhibition: " + (root.active ? "active" : "inactive")]; if (root._inhibitors)