From 61ad0c2159131902db26dfe96ff011709b5574fa Mon Sep 17 00:00:00 2001 From: Brenden Matthews Date: Tue, 26 Jan 2010 12:37:16 -0800 Subject: [PATCH] Only pause during startup, not after reload. --- src/conky.c | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/conky.c b/src/conky.c index 7c47b33..eef6791 100644 --- a/src/conky.c +++ b/src/conky.c @@ -5615,7 +5615,7 @@ void initialisation(int argc, char **argv) { while (1) { int c = getopt_long(argc, argv, getopt_string, longopts, NULL); - int startup_pause; + static int startup_pause = 0; if (c == -1) { break; @@ -5678,8 +5678,10 @@ void initialisation(int argc, char **argv) { break; #endif /* X11 */ case 'p': - startup_pause = atoi(optarg); - sleep(startup_pause); + if (startup_pause == 0) { + startup_pause = atoi(optarg); + sleep(startup_pause); + } break; case '?': -- 1.7.9.5