From 2853bd15c0728c05ae8e288d65754423cd7443e3 Mon Sep 17 00:00:00 2001 From: Carter Li Date: Sat, 31 May 2025 23:28:16 +0800 Subject: [PATCH] Logo (Builtin): add void2 Ported from hyfetch --- src/logo/ascii/void2.txt | 25 +++++++++++++++++++++++++ src/logo/builtin.c | 12 ++++++++++++ 2 files changed, 37 insertions(+) create mode 100644 src/logo/ascii/void2.txt diff --git a/src/logo/ascii/void2.txt b/src/logo/ascii/void2.txt new file mode 100644 index 000000000..f00a568aa --- /dev/null +++ b/src/logo/ascii/void2.txt @@ -0,0 +1,25 @@ + .......... + .::::::::::::::::::.. + ..:::::::::::::::::::::::::. + '::::::::::::::::::::::::::::. + ':::::'' '':::::::::::::. +$3 .. $1' '':::::::::. +$3 .||. $1'::::::::: +$3 .|||||. $1':::::::: +$3 .|||||||: $1:::::::: +$3 |||||||: $1.::::::::. :::::::: +$2 ######$3||||||' $2##^ v##########v$1::. $2##### #############v +$2 ######$3||||| $2##^ v####$1::::::$2####v$1::$2##### #####$1:::::$2##### +$2 ######$3||$2##^ #####$1::::::$2#####$1::$2##### #####$1:::::$2###### +$2 ######^$3|| $2#####$1:::::$2####^$1::$2##### #####$1:::::$2#####^ +$2 ##^$3||||| $2^###########^$1:::$2##### ##############^ +$3 |||||||: $1'::::::::' .:::::::: +$3 '|||||||: $1.::::::::' +$3 '|||||||:. $1':::::: +$3 '||||||||:. $1'::: +$3 ':|||||||||. . $1' +$3 '|||||||||||:... ...:||||. + ':||||||||||||||||||||||||||. + ':|||||||||||||||||||||||'' + '':||||||||||||||:'' + '''''' diff --git a/src/logo/builtin.c b/src/logo/builtin.c index 22f4b655d..fb2b369a1 100644 --- a/src/logo/builtin.c +++ b/src/logo/builtin.c @@ -5124,6 +5124,18 @@ static const FFlogo V[] = { .colorKeys = FF_COLOR_FG_DEFAULT, .colorTitle = FF_COLOR_FG_GREEN, }, + // Void2 + { + .names = {"void2"}, + .lines = FASTFETCH_DATATEXT_LOGO_VOID2, + .colors = { + FF_COLOR_FG_YELLOW, + FF_COLOR_FG_DEFAULT, + FF_COLOR_FG_GREEN, + }, + .colorKeys = FF_COLOR_FG_DEFAULT, + .colorTitle = FF_COLOR_FG_GREEN, + }, // Void2Small { .names = {"void2_small"},