blob: a657282b880837b325f9d6d5c30442a598cdaeb2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#include <libnotify/notify.h>
int main(void)
{
NotifyNotification *notif;
notify_init("some-name");
notif = notify_notification_new("syx", "oke", NULL);
notify_notification_show(notif, NULL);
}
|