1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-08-07 05:58: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 { BasePill {
id: root id: root
property color idleColor: Theme.widgetTextColor
property color inhibitColor: Theme.primary
content: Component { content: Component {
Item { Item {
implicitWidth: icon.width implicitWidth: icon.width
@@ -17,7 +20,7 @@ BasePill {
anchors.centerIn: parent anchors.centerIn: parent
name: SessionService.idleInhibited ? "motion_sensor_active" : "motion_sensor_idle" name: SessionService.idleInhibited ? "motion_sensor_active" : "motion_sensor_idle"
size: Theme.barIconSize(root.barThickness, -4, root.barConfig?.maximizeWidgetIcons, root.barConfig?.iconScale) size: Theme.barIconSize(root.barThickness, -4, root.barConfig?.maximizeWidgetIcons, root.barConfig?.iconScale)
color: Theme.widgetTextColor color: SessionService.idleInhibited ? inhibitColor : idleColor
} }
} }
} }