zsm/lib/notification.c

16 lines
478 B
C
Raw Normal View History

2024-04-30 18:17:17 +02:00
#include "notification.h"
#include "util.h"
2024-04-30 18:17:17 +02:00
2024-09-18 09:38:04 +02:00
void send_notification(uint8_t *author, uint8_t *content)
2024-04-30 18:17:17 +02:00
{
2024-09-18 09:38:04 +02:00
NotifyNotification *notification = notify_notification_new((char *) author,
(char *) content, "dialog-information");
if (notification == NULL) {
error(0, "Cannot create notification");
}
if (!notify_notification_show(notification, NULL)) {
error(0, "Cannot show notifcation");
}
g_object_unref(G_OBJECT(notification));
2024-04-30 18:17:17 +02:00
}