From 4f25572d1dc3e26dc9b58e077d6a7020ee13907a Mon Sep 17 00:00:00 2001 From: end-4 <97237370+end-4@users.noreply.github.com> Date: Sun, 12 Oct 2025 20:17:12 +0200 Subject: [PATCH] make critical notif icon more readable --- .../ii/modules/common/widgets/NotificationAppIcon.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/quickshell/ii/modules/common/widgets/NotificationAppIcon.qml b/.config/quickshell/ii/modules/common/widgets/NotificationAppIcon.qml index 75eb0c8c7..409ec652c 100644 --- a/.config/quickshell/ii/modules/common/widgets/NotificationAppIcon.qml +++ b/.config/quickshell/ii/modules/common/widgets/NotificationAppIcon.qml @@ -34,7 +34,7 @@ MaterialCookie { // App icon const defaultIcon = NotificationUtils.findSuitableMaterialSymbol("") const guessedIcon = NotificationUtils.findSuitableMaterialSymbol(root.summary) return (root.urgency == NotificationUrgency.Critical && guessedIcon === defaultIcon) ? - "release_alert" : guessedIcon + "priority_high" : guessedIcon } anchors.fill: parent color: isUrgent ? Appearance.colors.colOnPrimary : Appearance.colors.colOnSecondaryContainer