s:execl:execlp:
authorDylan Lloyd <dylan@dylansserver.com>
Tue, 21 Feb 2012 19:19:29 +0000 (14:19 -0500)
committerDylan Lloyd <dylan@dylansserver.com>
Tue, 21 Feb 2012 19:19:29 +0000 (14:19 -0500)
notify-display [deleted file]
server.c

diff --git a/notify-display b/notify-display
deleted file mode 100755 (executable)
index 433bac1..0000000
+++ /dev/null
@@ -1,4 +0,0 @@
-#!/bin/bash
-
-DISPLAY=:0
-notify-send -t 0 -i ~/.irssi/irssi.png "$1" "$2"
index 6276c9f..527d737 100644 (file)
--- a/server.c
+++ b/server.c
@@ -126,7 +126,7 @@ int main(void)
             printf("irssi-notify: recieved '%s'\n", buf);
             if (!fork()){
                 setenv("DISPLAY", ":0", 1); // doesn't seem to be doing the trick
-                execl("notify-display",
+                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