Skip to content
Closed
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions src/logo/ascii/metalos.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
///////////////////////////////
///////////////////////////////
///////////////////////////////
///////////////////////////////
///////////////////////////////
/////// _ _ ////////
/////// \\ _ // ////////
/////// \\ / \'\ // ////////
/////// \\/ /-/// ////////
/////// ////////
/////// keep it metal! ////////
/////// ////////
///////////////////////////////
///////////////////////////////
///////////////////////////////
///////////////////////////////
6 changes: 6 additions & 0 deletions src/logo/ascii/metalos_small.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
_ _
\\ _ //
\\ / \'\ //
\\/ /-///

keep it metal!
23 changes: 23 additions & 0 deletions src/logo/builtin.c
Original file line number Diff line number Diff line change
Expand Up @@ -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
Comment thread
YurinDoctrine marked this conversation as resolved.
Outdated
FF_COLOR_FG_DEFAULT,
},
.colorKeys = FF_COLOR_FG_LIGHT_BLACK, //grey
Comment thread
YurinDoctrine marked this conversation as resolved.
Outdated
.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
Comment thread
YurinDoctrine marked this conversation as resolved.
Outdated
FF_COLOR_FG_DEFAULT,
},
.colorKeys = FF_COLOR_FG_WHITE,
.colorTitle = FF_COLOR_FG_DEFAULT,
},
// MidnightBSD
{
.names = {"MidnightBSD"},
Expand Down
Loading