Skip to content

Commit bb897f0

Browse files
committed
add small logo
1 parent 517d80e commit bb897f0

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

src/logo/builtin.c

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,24 @@ static const FFlogo* getLogoAlpine()
7575
FF_LOGO_RETURN
7676
}
7777

78+
static const FFlogo* getLogoAlpineSmall()
79+
{
80+
FF_LOGO_INIT
81+
FF_LOGO_NAMES("alpine_small", "alpine-linux-small")
82+
FF_LOGO_LINES(
83+
" /\\ /\\n"
84+
" // \\ \\n"
85+
" // \\ \\n"
86+
"/// \\ \\n"
87+
"// \\ \\n"
88+
" \\n"
89+
)
90+
FF_LOGO_COLORS(
91+
"34" //blue
92+
)
93+
FF_LOGO_RETURN
94+
}
95+
7896
static const FFlogo* getLogoAndroid()
7997
{
8098
FF_LOGO_INIT
@@ -1467,6 +1485,7 @@ GetLogoMethod* ffLogoBuiltinGetAll()
14671485
ffLogoBuiltinGetUnknown,
14681486
getLogoNone,
14691487
getLogoAlpine,
1488+
getLogoAlpineSmall,
14701489
getLogoAndroid,
14711490
getLogoAndroidSmall,
14721491
getLogoArch,

0 commit comments

Comments
 (0)