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! diff --git a/src/logo/builtin.c b/src/logo/builtin.c index 7e1dc33024..9258837d95 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_WHITE, + FF_COLOR_FG_DEFAULT, + }, + .colorKeys = FF_COLOR_FG_WHITE, + .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_WHITE, + FF_COLOR_FG_DEFAULT, + }, + .colorKeys = FF_COLOR_FG_WHITE, + .colorTitle = FF_COLOR_FG_DEFAULT, + }, // MidnightBSD { .names = {"MidnightBSD"},