diff --git a/modules/bar/Volume.qml b/modules/bar/Volume.qml index 67fb916..3a8b308 100644 --- a/modules/bar/Volume.qml +++ b/modules/bar/Volume.qml @@ -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 : [] } diff --git a/modules/notifications/NotificationCard.qml b/modules/notifications/NotificationCard.qml index f2ed854..f19e469 100644 --- a/modules/notifications/NotificationCard.qml +++ b/modules/notifications/NotificationCard.qml @@ -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 { diff --git a/reusables/CustomIcon.qml b/reusables/CustomIcon.qml index a312afb..98084a0 100644 --- a/reusables/CustomIcon.qml +++ b/reusables/CustomIcon.qml @@ -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 + }) }