From: Arun Prakash Jana Date: Mon, 3 Apr 2017 19:07:44 +0000 (+0530) Subject: ASCII Art to indicate nnn launched program X-Git-Tag: v1.0~28 X-Git-Url: http://www.git.stargrave.org/?a=commitdiff_plain;h=10a18bf07ee18691e5f6ab716f6278a22885c276;p=nnn.git ASCII Art to indicate nnn launched program --- diff --git a/nnn.c b/nnn.c index b80b017a..a04e24a7 100644 --- a/nnn.c +++ b/nnn.c @@ -281,6 +281,7 @@ spawn(char *file, char *arg, char *dir) if (pid == 0) { if (dir != NULL) status = chdir(dir); + fprintf(stdout, "\n +-++-++-+\n | n n n |\n +-++-++-+\n\n"); execlp(file, file, arg, NULL); _exit(1); } else {