summaryrefslogtreecommitdiff
path: root/tools/test-replace.c
diff options
context:
space:
mode:
Diffstat (limited to 'tools/test-replace.c')
-rw-r--r--tools/test-replace.c28
1 files changed, 28 insertions, 0 deletions
diff --git a/tools/test-replace.c b/tools/test-replace.c
new file mode 100644
index 0000000..feb624e
--- /dev/null
+++ b/tools/test-replace.c
@@ -0,0 +1,28 @@
+#include <libnotify/notify.h>
+#include <stdio.h>
+#include <unistd.h>
+
+int main() {
+ notify_init("Replace Test");
+
+ NotifyHandle *n = notify_send_notification(NULL, // replaces nothing
+ NOTIFY_URGENCY_NORMAL,
+ "Summary", "Content",
+ NULL, // no icon
+ FALSE, 0, // does not expire
+ NULL, // no user data
+ 0); // no actions
+
+ if (!n) {
+ fprintf(stderr, "failed to send notification\n");
+ return 1;
+ }
+
+
+ sleep(3);
+
+ notify_send_notification(n, NOTIFY_URGENCY_NORMAL, "Second Summary", "Second Content",
+ NULL, TRUE, time(NULL) + 5, NULL, 0);
+
+ return 0;
+}