From b7c90993dda516a00cd0200ac02c66a2a559daab Mon Sep 17 00:00:00 2001 From: YurinDoctrine <43861005+YurinDoctrine@users.noreply.github.com> Date: Thu, 26 Feb 2026 14:55:45 +0000 Subject: [PATCH 1/5] Add METALOS METALOS is a meta-Linux distribution based on musl libc and busybox. It provides "meta" (Makefiles for Express Target Automation) to install a Linux-based operating system on bare metal. --- src/logo/ascii/metalos.txt | 16 ++++++++++++++++ src/logo/ascii/metalos_small.txt | 6 ++++++ 2 files changed, 22 insertions(+) create mode 100644 src/logo/ascii/metalos.txt create mode 100644 src/logo/ascii/metalos_small.txt diff --git a/src/logo/ascii/metalos.txt b/src/logo/ascii/metalos.txt new file mode 100644 index 0000000000..0f18fb86bf --- /dev/null +++ b/src/logo/ascii/metalos.txt @@ -0,0 +1,16 @@ +/////////////////////////////// +/////////////////////////////// +/////////////////////////////// +/////////////////////////////// +/////////////////////////////// +/////// _ _ //////// +/////// \\ _ // //////// +/////// \\ / \'\ // //////// +/////// \\/ /-/// //////// +/////// //////// +/////// keep it metal! //////// +/////// //////// +/////////////////////////////// +/////////////////////////////// +/////////////////////////////// +/////////////////////////////// diff --git a/src/logo/ascii/metalos_small.txt b/src/logo/ascii/metalos_small.txt new file mode 100644 index 0000000000..e4d071c107 --- /dev/null +++ b/src/logo/ascii/metalos_small.txt @@ -0,0 +1,6 @@ + _ _ + \\ _ // + \\ / \'\ // + \\/ /-/// + + keep it metal! From 983d1344c8ae0fde01a98fba0f83d0adcba2e474 Mon Sep 17 00:00:00 2001 From: YurinDoctrine <43861005+YurinDoctrine@users.noreply.github.com> Date: Thu, 26 Feb 2026 15:00:54 +0000 Subject: [PATCH 2/5] Add METALOS METALOS is a meta-Linux distribution based on musl libc and busybox. It provides "meta" (Makefiles for Express Target Automation) to install a Linux-based operating system on bare metal. --- src/logo/builtin.c | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/src/logo/builtin.c b/src/logo/builtin.c index 7e1dc33024..d9d8ded694 100644 --- a/src/logo/builtin.c +++ b/src/logo/builtin.c @@ -3133,6 +3133,29 @@ static const FFlogo M[] = { .colorKeys = FF_COLOR_FG_BLUE, .colorTitle = FF_COLOR_FG_DEFAULT, }, + // Metalos + { + .names = {"metalos"}, + .lines = FASTFETCH_DATATEXT_LOGO_METALOS, + .colors = { + FF_COLOR_FG_LIGHT_BLACK, //grey + FF_COLOR_FG_DEFAULT, + }, + .colorKeys = FF_COLOR_FG_LIGHT_BLACK, //grey + .colorTitle = FF_COLOR_FG_DEFAULT, + }, + // MetalosSmall + { + .names = {"metalos_small"}, + .lines = FASTFETCH_DATATEXT_LOGO_METALOS_SMALL, + .type = FF_LOGO_LINE_TYPE_SMALL_BIT, + .colors = { + FF_COLOR_FG_LIGHT_BLACK, //grey + FF_COLOR_FG_DEFAULT, + }, + .colorKeys = FF_COLOR_FG_LIGHT_BLACK, //grey + .colorTitle = FF_COLOR_FG_DEFAULT, + }, // MidnightBSD { .names = {"MidnightBSD"}, From 63168a4cebb11c2742cf7b161bec732652f0ec7a Mon Sep 17 00:00:00 2001 From: YurinDoctrine <43861005+YurinDoctrine@users.noreply.github.com> Date: Thu, 26 Feb 2026 17:38:13 +0000 Subject: [PATCH 3/5] Apply suggestions from code review --- src/logo/builtin.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/logo/builtin.c b/src/logo/builtin.c index d9d8ded694..6c857e318a 100644 --- a/src/logo/builtin.c +++ b/src/logo/builtin.c @@ -3153,7 +3153,7 @@ static const FFlogo M[] = { FF_COLOR_FG_LIGHT_BLACK, //grey FF_COLOR_FG_DEFAULT, }, - .colorKeys = FF_COLOR_FG_LIGHT_BLACK, //grey + .colorKeys = FF_COLOR_FG_WHITE, .colorTitle = FF_COLOR_FG_DEFAULT, }, // MidnightBSD From 66a19b312675a62db4e8e113609592a31c73f736 Mon Sep 17 00:00:00 2001 From: YurinDoctrine <43861005+YurinDoctrine@users.noreply.github.com> Date: Thu, 26 Feb 2026 17:53:35 +0000 Subject: [PATCH 4/5] Apply suggestions from code review --- src/logo/builtin.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/logo/builtin.c b/src/logo/builtin.c index 6c857e318a..9aeefdcc92 100644 --- a/src/logo/builtin.c +++ b/src/logo/builtin.c @@ -3141,7 +3141,7 @@ static const FFlogo M[] = { FF_COLOR_FG_LIGHT_BLACK, //grey FF_COLOR_FG_DEFAULT, }, - .colorKeys = FF_COLOR_FG_LIGHT_BLACK, //grey + .colorKeys = FF_COLOR_FG_WHITE, .colorTitle = FF_COLOR_FG_DEFAULT, }, // MetalosSmall From 78ffbcaa0d245a3ce76eafc87ca9857626801e5a Mon Sep 17 00:00:00 2001 From: YurinDoctrine <43861005+YurinDoctrine@users.noreply.github.com> Date: Thu, 26 Feb 2026 17:57:26 +0000 Subject: [PATCH 5/5] Apply suggestions from code review --- src/logo/builtin.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/logo/builtin.c b/src/logo/builtin.c index 9aeefdcc92..9258837d95 100644 --- a/src/logo/builtin.c +++ b/src/logo/builtin.c @@ -3138,7 +3138,7 @@ static const FFlogo M[] = { .names = {"metalos"}, .lines = FASTFETCH_DATATEXT_LOGO_METALOS, .colors = { - FF_COLOR_FG_LIGHT_BLACK, //grey + FF_COLOR_FG_WHITE, FF_COLOR_FG_DEFAULT, }, .colorKeys = FF_COLOR_FG_WHITE, @@ -3150,7 +3150,7 @@ static const FFlogo M[] = { .lines = FASTFETCH_DATATEXT_LOGO_METALOS_SMALL, .type = FF_LOGO_LINE_TYPE_SMALL_BIT, .colors = { - FF_COLOR_FG_LIGHT_BLACK, //grey + FF_COLOR_FG_WHITE, FF_COLOR_FG_DEFAULT, }, .colorKeys = FF_COLOR_FG_WHITE,