brightess and volume control

This commit is contained in:
2026-03-26 13:15:54 -07:00
parent 80efc104ed
commit 5b8d82a934
20 changed files with 588 additions and 37 deletions

View File

@@ -9,7 +9,7 @@ Item {
horizontalCenter: parent.horizontalCenter
}
width: 350
height: childrenRect.height
height: childrenRect.height + 12
Connections {
target: notifServer
function onNotification(notif) {
@@ -22,6 +22,7 @@ Item {
}
Widgets.Notification {
id: notifPopup
y: 6
anchors.margins: 6
modelData: notifServer.trackedNotifications.values[0] ?? undefined
color: "transparent"
@@ -32,4 +33,8 @@ Item {
interval: 3000
onTriggered: root.close()
}
Connections {
target: background
function onIndexChanged() { timeout.stop() }
}
}