1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-08-02 03:28:28 -04:00

bar(IdleInhibitor): Color icon when activated (#2395)

This commit is contained in:
Aaron Tulino
2026-07-16 09:18:19 -07:00
committed by GitHub
parent 3c0f2cbc48
commit 9ddea82063
@@ -7,6 +7,9 @@ import qs.Widgets
BasePill {
id: root
property color idleColor: Theme.widgetTextColor
property color inhibitColor: Theme.primary
content: Component {
Item {
implicitWidth: icon.width
@@ -17,7 +20,7 @@ BasePill {
anchors.centerIn: parent
name: SessionService.idleInhibited ? "motion_sensor_active" : "motion_sensor_idle"
size: Theme.barIconSize(root.barThickness, -4, root.barConfig?.maximizeWidgetIcons, root.barConfig?.iconScale)
color: Theme.widgetTextColor
color: SessionService.idleInhibited ? inhibitColor : idleColor
}
}
}