From 103825161a012fcee5db81ff8d184312c32c36dd Mon Sep 17 00:00:00 2001 From: retrozinndev Date: Fri, 18 Apr 2025 21:43:23 -0300 Subject: [PATCH] :boom: ags(notifications): add AstalNotifd.Notification.appIcon property to HistoryNotification too --- ags/scripts/notifications.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ags/scripts/notifications.ts b/ags/scripts/notifications.ts index a17c708..3303db8 100644 --- a/ags/scripts/notifications.ts +++ b/ags/scripts/notifications.ts @@ -12,6 +12,7 @@ export interface HistoryNotification { body: string; summary: string; urgency: AstalNotifd.Urgency; + appIcon?: string; time: number; image?: string; } @@ -137,6 +138,7 @@ class Notifications extends GObject.Object { body: notif.body, summary: notif.summary, urgency: notif.urgency, + appIcon: notif.appIcon, time: notif.time, image: notif.image ? notif.image : undefined } as HistoryNotification);