origin/new #2

Merged
lucy merged 7 commits from origin/new into new 2026-02-06 19:16:59 +01:00
3 changed files with 13 additions and 5 deletions
Showing only changes of commit 2b9e44f71f - Show all commits

View File

@ -38,10 +38,12 @@ Rectangle {
}
RowLayout {
id: textRow
spacing: 2
spacing: 0
anchors.centerIn: parent
height: parent.height
CustomText {
id: volumeText
Layout.alignment: Qt.AlignVCenter
PwObjectTracker {
objects: Pipewire.ready ? Pipewire.defaultAudioSink : []
}

View File

@ -32,7 +32,7 @@ Rectangle {
id: notiIcon
radius: notifyItem.radius - notifyItem.radius / 3
implicitWidth: 64
color: Colors.color8
color: "transparent"
implicitHeight: 64
visible: notifyItem.modelData.image !== ""
IconImage {

View File

@ -1,10 +1,16 @@
import QtQuick
import qs.settings
import qs
import qs.settings
Text {
verticalAlignment: Text.AlignVCenter
property real fill: 0
font.family: "Material Symbols Rounded"
color: Colors.onSurfaceColor
font.pixelSize: Settings.config.fontSize + 2
font.pixelSize: Settings.config.fontSize
font.variableAxes: ({
FILL: fill,
GRAD: 0,
opsz: 24,
wght: 400
})
}