zsm/lib/notification.c

9 lines
250 B
C
Raw Normal View History

2024-04-30 18:17:17 +02:00
#include "notification.h"
void send_notification(const char *content)
{
NotifyNotification *noti = notify_notification_new("Client", content, "dialog-information");
notify_notification_show(noti, NULL);
g_object_unref(G_OBJECT(noti));
}