aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Arun Prakash Jana <engineerarun@gmail.com>2017-04-04 00:37:44 +0530
committerGravatar Arun Prakash Jana <engineerarun@gmail.com>2017-04-04 00:37:44 +0530
commit10a18bf07ee18691e5f6ab716f6278a22885c276 (patch)
tree764ff72039da6203642b6918160e3750e60f378d
parent754ea4d3efbe54ef5649536fcef1600d2f090233 (diff)
downloadnnn-10a18bf07ee18691e5f6ab716f6278a22885c276.tar.gz
ASCII Art to indicate nnn launched program
-rw-r--r--nnn.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/nnn.c b/nnn.c
index b80b017..a04e24a 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 {