-all: server client
+all: irssi-listen irssi-notify
-server:
+irssi-notify:
gcc notify.c -o irssi-notify
-client:
- gcc listen.c -o irssi-listen
+irssi-listen:
+ gcc -o irssi-listen `pkg-config --cflags --libs libnotify` listen.c
clean:
rm irssi-notify irssi-listen
#include <arpa/inet.h>
#include <sys/wait.h>
#include <signal.h>
+#include <libnotify/notify.h>
#define PORT "3490" // the port users will be connecting to
}
buf[4096] = '\0';
printf("irssi-notify: recieved '%s'\n", buf);
- if (!fork()){
- setenv("DISPLAY", ":0", 1); // doesn't seem to be doing the trick
- execlp("notify-display",
- "notify-display", buf, NULL);
- // the first argument to execl is the command, the second is the first argument
- // passed to the program ($0), customarily the evocation of the command
- }
+ notify_init("irssi-notify");
+ NotifyNotification * notification =
+ notify_notification_new("", buf, "irssi-notify");
+ notify_notification_show(notification, NULL);
close(activefd);
exit(0);
}