From 2d7dc6fbc592bf7a764286d8d8d42fda7db7549b Mon Sep 17 00:00:00 2001 From: Benedikt Heine Date: Wed, 11 Oct 2017 16:55:28 +0200 Subject: [PATCH] Make startup notification timeout in 10 seconds --- src/dunst.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dunst.c b/src/dunst.c index 18c306f..f4e6349 100644 --- a/src/dunst.c +++ b/src/dunst.c @@ -316,7 +316,7 @@ int dunst_main(int argc, char *argv[]) n->summary = g_strdup("startup"); n->body = g_strdup("dunst is up and running"); n->progress = 0; - n->timeout = 10; + n->timeout = 10 * G_USEC_PER_SEC; n->markup = MARKUP_NO; n->urgency = LOW; notification_init(n, 0);