From af4ad36f6ac7e93fc376ac9c5a17ea2518cb2001 Mon Sep 17 00:00:00 2001 From: Leonmmcoset Date: Wed, 15 Apr 2026 21:47:49 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=94=B9logo?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../c/apps/shell/cmd/fastfetch_print_logo.inc | 32 ++++++++++++------- 1 file changed, 20 insertions(+), 12 deletions(-) diff --git a/cleonos/c/apps/shell/cmd/fastfetch_print_logo.inc b/cleonos/c/apps/shell/cmd/fastfetch_print_logo.inc index 44ff102..27b4c77 100644 --- a/cleonos/c/apps/shell/cmd/fastfetch_print_logo.inc +++ b/cleonos/c/apps/shell/cmd/fastfetch_print_logo.inc @@ -1,17 +1,25 @@ static void ush_fastfetch_print_logo(int plain) { if (plain == 0) { - ush_writeln("\x1B[1;34m ______ __ ____ _____\x1B[0m"); - ush_writeln("\x1B[1;36m / ____/ / / ___ ____ ____ / __ \\ / ___/\x1B[0m"); - ush_writeln("\x1B[1;32m / / / / / _ \\ / __ \\ / __ \\ / / / / \\__ \\ \x1B[0m"); - ush_writeln("\x1B[1;33m/ /___ / /___/ __// /_/ / / / / // /_/ / ___/ / \x1B[0m"); - ush_writeln("\x1B[1;31m\\____/ /_____/\\___/ \\____/ /_/ /_/ \\____/ /____/ \x1B[0m"); - ush_writeln(" "); + ush_writeln("\x1B[1;34m $$$$$$\\ $$\\ $$$$$$\\ $$$$$$\\ \x1B[0m"); + ush_writeln("\x1B[1;36m$$ __$$\\ $$ | $$ __$$\\ $$ __$$\\ \x1B[0m"); + ush_writeln("\x1B[1;32m$$ / \\__|$$ | $$$$$$\\ $$$$$$\\ $$$$$$$\\ $$ / $$ |$$ / \\__|\x1B[0m"); + ush_writeln("\x1B[1;33m$$ | $$ | $$ __$$\\ $$ __$$\\ $$ __$$\\ $$ | $$ |\\$$$$$$\\ \x1B[0m"); + ush_writeln("\x1B[1;31m$$ | $$ | $$$$$$$$ |$$ / $$ |$$ | $$ |$$ | $$ | \\____$$\\ \x1B[0m"); + ush_writeln("\x1B[1;35m$$ | $$\\ $$ | $$ ____|$$ | $$ |$$ | $$ |$$ | $$ |$$\\ $$ |\x1B[0m"); + ush_writeln("\x1B[1;94m\\$$$$$$ |$$$$$$$$\\ \\$$$$$$$\\ \\$$$$$$ |$$ | $$ | $$$$$$ |\\$$$$$$ |\x1B[0m"); + ush_writeln("\x1B[1;96m \\______/ \\________| \\_______| \\______/ \\__| \\__| \\______/ \\______/ \x1B[0m"); + ush_writeln(" "); + ush_writeln(" "); } else { - ush_writeln(" ______ __ ____ _____"); - ush_writeln(" / ____/ / / ___ ____ ____ / __ \\ / ___/"); - ush_writeln(" / / / / / _ \\ / __ \\ / __ \\ / / / / \\__ \\ "); - ush_writeln("/ /___ / /___/ __// /_/ / / / / // /_/ / ___/ / "); - ush_writeln("\\____/ /_____/\\___/ \\____/ /_/ /_/ \\____/ /____/ "); - ush_writeln(" "); + ush_writeln(" $$$$$$\\ $$\\ $$$$$$\\ $$$$$$\\ "); + ush_writeln("$$ __$$\\ $$ | $$ __$$\\ $$ __$$\\ "); + ush_writeln("$$ / \\__|$$ | $$$$$$\\ $$$$$$\\ $$$$$$$\\ $$ / $$ |$$ / \\__|"); + ush_writeln("$$ | $$ | $$ __$$\\ $$ __$$\\ $$ __$$\\ $$ | $$ |\\$$$$$$\\ "); + ush_writeln("$$ | $$ | $$$$$$$$ |$$ / $$ |$$ | $$ |$$ | $$ | \\____$$\\ "); + ush_writeln("$$ | $$\\ $$ | $$ ____|$$ | $$ |$$ | $$ |$$ | $$ |$$\\ $$ |"); + ush_writeln("\\$$$$$$ |$$$$$$$$\\ \\$$$$$$$\\ \\$$$$$$ |$$ | $$ | $$$$$$ |\\$$$$$$ |"); + ush_writeln(" \\______/ \\________| \\_______| \\______/ \\__| \\__| \\______/ \\______/ "); + ush_writeln(" "); + ush_writeln(" "); } }