Files
z-bar-qt/Modules/NotifBell.qml
T
Zacharias-Brohn 6a4479b8a3 new font???
2025-11-25 13:01:27 +01:00

30 lines
715 B
QML

import QtQuick
import qs.Config
import qs.Helpers
import qs.Components
Item {
implicitWidth: 20
implicitHeight: 18
MaterialIcon {
id: notificationCenterIcon
property color iconColor: Config.useDynamicColors ? DynamicColors.palette.m3tertiaryFixed : "white"
text: HasNotifications.hasNotifications ? "\uf4fe" : "\ue7f4"
font.family: "Material Symbols Rounded"
font.pixelSize: 20
color: iconColor
Behavior on color {
CAnim {}
}
MouseArea {
anchors.fill: parent
cursorShape: Qt.PointingHandCursor
onClicked: {
ncProcess.running = true
}
}
}
}