From 3b689f8a66385486567c0eefae4364ab1991a18a Mon Sep 17 00:00:00 2001 From: end-4 <97237370+end-4@users.noreply.github.com> Date: Sun, 12 Oct 2025 10:06:23 +0200 Subject: [PATCH] notif indicator: fix readability --- .config/quickshell/ii/modules/bar/BarContent.qml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.config/quickshell/ii/modules/bar/BarContent.qml b/.config/quickshell/ii/modules/bar/BarContent.qml index 934dd26da..978ef10b0 100644 --- a/.config/quickshell/ii/modules/bar/BarContent.qml +++ b/.config/quickshell/ii/modules/bar/BarContent.qml @@ -305,10 +305,10 @@ Item { // Bar content region animation: Appearance.animation.elementMoveFast.numberAnimation.createObject(this) } Rectangle { - visible: !Notifications.silent + visible: !Notifications.silent && Notifications.unread > 0 anchors.right: parent.right radius: Appearance.rounding.full - color: Appearance.colors.colLayer0 + color: Appearance.colors.colOnLayer0 z: 1 implicitHeight: Math.max(notificationCounterText.implicitWidth, notificationCounterText.implicitHeight) @@ -318,7 +318,7 @@ Item { // Bar content region id: notificationCounterText anchors.centerIn: parent font.pixelSize: Appearance.font.pixelSize.smallest - color: Appearance.colors.colOnLayer1 + color: Appearance.colors.colLayer0 text: Notifications.unread } }