From 10a18bf07ee18691e5f6ab716f6278a22885c276 Mon Sep 17 00:00:00 2001 From: Arun Prakash Jana Date: Tue, 4 Apr 2017 00:37:44 +0530 Subject: [PATCH] ASCII Art to indicate nnn launched program --- nnn.c | 1 + 1 file changed, 1 insertion(+) 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 { -- 2.48.1