mirror of
https://github.com/end-4/dots-hyprland.git
synced 2026-06-07 07:49:28 -05:00
39 lines
1.2 KiB
QML
39 lines
1.2 KiB
QML
import QtQuick
|
|
import qs.services
|
|
import qs.modules.common
|
|
import qs.modules.common.widgets
|
|
|
|
MaterialSymbol {
|
|
id: root
|
|
readonly property bool showUnreadCount: Config.options.bar.indicators.notifications.showUnreadCount
|
|
text: Notifications.silent ? "notifications_paused" : "notifications"
|
|
iconSize: Appearance.font.pixelSize.larger
|
|
color: rightSidebarButton.colText
|
|
|
|
Rectangle {
|
|
id: notifPing
|
|
visible: !Notifications.silent && Notifications.unread > 0
|
|
anchors {
|
|
right: parent.right
|
|
top: parent.top
|
|
rightMargin: root.showUnreadCount ? 0 : 1
|
|
topMargin: root.showUnreadCount ? 0 : 3
|
|
}
|
|
radius: Appearance.rounding.full
|
|
color: Appearance.colors.colOnLayer0
|
|
z: 1
|
|
|
|
implicitHeight: root.showUnreadCount ? Math.max(notificationCounterText.implicitWidth, notificationCounterText.implicitHeight) : 8
|
|
implicitWidth: implicitHeight
|
|
|
|
StyledText {
|
|
id: notificationCounterText
|
|
visible: root.showUnreadCount
|
|
anchors.centerIn: parent
|
|
font.pixelSize: Appearance.font.pixelSize.smallest
|
|
color: Appearance.colors.colLayer0
|
|
text: Notifications.unread
|
|
}
|
|
}
|
|
}
|