From e11cbc289aab27b88fdba96b11ccecf06bbd5ceb Mon Sep 17 00:00:00 2001 From: Arun Prakash Jana Date: Sun, 22 Aug 2021 20:47:00 +0530 Subject: [PATCH] Add a cool ASCII art to help screen --- src/nnn.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/nnn.c b/src/nnn.c index b15a1199..3c40685f 100644 --- a/src/nnn.c +++ b/src/nnn.c @@ -4992,6 +4992,12 @@ static void show_help(const char *path) if (fd == -1) return; + dprintf(fd, " |V\\_\n" + " /. \\\\\n" + " (.~; ||\n" + " /__3\\\n" + " (__n_))\n"); + char *prog = xgetenv(env_cfg[NNN_HELP], NULL); if (prog) get_output(prog, NULL, NULL, fd, TRUE, FALSE);