X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=src%2Fprint_run_watch.c;h=b108f8fef85b728ac2d388b6055744c6c13bd400;hb=0006ec53efd3d8d8b366f3688333fd00484897d3;hp=893e2cd80f36d8b76cc7da679ab4ef6b65c85c3f;hpb=1b3aa404858b476015a2b29d0c42f7dbbed915bc;p=i3%2Fi3status diff --git a/src/print_run_watch.c b/src/print_run_watch.c index 893e2cd..b108f8f 100644 --- a/src/print_run_watch.c +++ b/src/print_run_watch.c @@ -1,33 +1,40 @@ +// vim:ts=4:sw=4:expandtab #include #include #include #include #include "i3status.h" -void print_run_watch(yajl_gen json_gen, char *buffer, const char *title, const char *pidfile, const char *format) { - bool running = process_runs(pidfile); - const char *walk; - char *outwalk = buffer; +void print_run_watch(yajl_gen json_gen, char *buffer, const char *title, const char *pidfile, const char *format, const char *format_down) { + bool running = process_runs(pidfile); + const char *walk; + char *outwalk = buffer; - INSTANCE(pidfile); + if (running || format_down == NULL) { + walk = format; + } else { + walk = format_down; + } - START_COLOR((running ? "color_good" : "color_bad")); + INSTANCE(pidfile); - for (walk = format; *walk != '\0'; walk++) { - if (*walk != '%') { - *(outwalk++) = *walk; - continue; - } + START_COLOR((running ? "color_good" : "color_bad")); - if (strncmp(walk+1, "title", strlen("title")) == 0) { - outwalk += sprintf(outwalk, "%s", title); - walk += strlen("title"); - } else if (strncmp(walk+1, "status", strlen("status")) == 0) { - outwalk += sprintf(outwalk, "%s", (running ? "yes" : "no")); - walk += strlen("status"); - } + for (; *walk != '\0'; walk++) { + if (*walk != '%') { + *(outwalk++) = *walk; + continue; } - END_COLOR; - OUTPUT_FULL_TEXT(buffer); + if (BEGINS_WITH(walk + 1, "title")) { + outwalk += sprintf(outwalk, "%s", title); + walk += strlen("title"); + } else if (BEGINS_WITH(walk + 1, "status")) { + outwalk += sprintf(outwalk, "%s", (running ? "yes" : "no")); + walk += strlen("status"); + } + } + + END_COLOR; + OUTPUT_FULL_TEXT(buffer); }