aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGravatar BanceDev 2024-09-09 18:17:53 -0400
committerGravatar BanceDev 2024-09-09 18:17:53 -0400
commit5e403a6ed9936c79214e20bf89197325487966d0 (patch)
tree2d54a9df83437e6ce9159c6e02998ca11814d2b4 /src
parentadd aliasing to init.lua (diff)
added coloring to help command
Diffstat (limited to '')
-rw-r--r--src/help.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/help.h b/src/help.h
index 3f7b705..d66ed47 100644
--- a/src/help.h
+++ b/src/help.h
@@ -2,12 +2,12 @@
#define HELP_H
char *lush_get_help_text() {
- return ".____ _________.__ .__ .__ \n"
+ return "\033[1;35m.____ _________.__ .__ .__ \n"
"| | __ __ ____ _____ _______ / _____/| |__ ____ | | | | \n"
"| | | | \\/ \\\\__ \\\\_ __ \\ \\_____ \\ | | \\_/ __ \\| | | | \n"
"| |___| | / | \\/ __ \\| | \\/ / \\| Y \\ ___/| |_| |__\n"
"|_______ \\____/|___| (____ /__| /_______ /|___| /\\___ >____/____/\n"
-" \\/ \\/ \\/ \\/ \\/ \\/ \n";
+" \\/ \\/ \\/ \\/ \\/ \\/ \n\033[0m";
}