From 60254019c8b90fda1af8c263f5bc07fe1a6b1a92 Mon Sep 17 00:00:00 2001 From: 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> Date: Sat, 10 May 2025 21:04:17 +1000 Subject: feat: expandable notifs --- services/Notifs.qml | 3 +++ 1 file changed, 3 insertions(+) (limited to 'services') diff --git a/services/Notifs.qml b/services/Notifs.qml index 455e4db..7697d9e 100644 --- a/services/Notifs.qml +++ b/services/Notifs.qml @@ -1,4 +1,5 @@ pragma Singleton +pragma ComponentBehavior: Bound import "root:/config" import Quickshell @@ -52,6 +53,7 @@ Singleton { readonly property string summary: notification.summary readonly property string body: notification.body readonly property string appIcon: notification.appIcon + readonly property string appName: notification.appName readonly property string image: notification.image readonly property Timer timer: Timer { @@ -64,6 +66,7 @@ Singleton { target: notif.notification function onClosed(): void { + root.list.splice(root.list.indexOf(notif), 1); notif.destroy(); } } -- cgit v1.2.3-freya