ddcutil-service usage

This commit is contained in:
Zacharias-Brohn
2026-02-28 00:23:29 +01:00
parent 178375d861
commit 65adecfa21
2 changed files with 31 additions and 15 deletions
+15
View File
@@ -65,9 +65,24 @@ Item {
color: Players.active?.isPlaying ? DynamicColors.palette.m3primary : DynamicColors.palette.m3onSurface
font.pointSize: Appearance.font.size.normal
horizontalAlignment: Text.AlignHCenter
marqueeEnabled: false
pauseMs: 4000
text: root.currentMedia
width: root.textWidth
CustomMouseArea {
anchors.fill: parent
hoverEnabled: true
onContainsMouseChanged: {
if (!containsMouse) {
mediatext.marqueeEnabled = false;
} else {
mediatext.marqueeEnabled = true;
mediatext.anim.start();
}
}
}
}
}
}