Skip to content

Commit 04da7ce

Browse files
committed
Logo: add macOS small version
1 parent ccb227e commit 04da7ce

File tree

2 files changed

+55
-0
lines changed

2 files changed

+55
-0
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,9 @@ Improvements:
5555
* Improve preformance (WmTheme amd Font, Windows and macOS)
5656
* Enable nonblocking public-ip / weather detection (Android)
5757

58+
Logos:
59+
* macOS small / small2
60+
5861
# 1.10.2
5962

6063
Bugfixes:

src/logo/builtin.c

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1187,6 +1187,56 @@ static const FFlogo* getLogoMacOS()
11871187
FF_LOGO_RETURN
11881188
}
11891189

1190+
static const FFlogo* getLogoMacOSSmall()
1191+
{
1192+
FF_LOGO_INIT
1193+
FF_LOGO_NAMES("macos_small", "mac_small", "apple_small", "darwin_small", "osx_small")
1194+
FF_LOGO_LINES(
1195+
"$1 .:'\n"
1196+
" __ :'__\n"
1197+
"$2 .'`__`-'__``.\n"
1198+
"$3:__________.-'\n"
1199+
"$4:_________:\n"
1200+
" :_________`-;\n"
1201+
"$5 `.__.-.__.'"
1202+
)
1203+
FF_LOGO_COLORS(
1204+
"32", //green
1205+
"33", //yellow
1206+
"31", //red
1207+
"35", //magenta
1208+
"34" //blue
1209+
)
1210+
FF_LOGO_COLOR_KEYS("33"); //yellow
1211+
FF_LOGO_COLOR_TITLE("32"); //green
1212+
FF_LOGO_RETURN
1213+
}
1214+
1215+
static const FFlogo* getLogoMacOSSmall2()
1216+
{
1217+
FF_LOGO_INIT
1218+
FF_LOGO_NAMES("macos_small2", "mac_small2", "apple_small2", "darwin_small2", "osx_small2")
1219+
FF_LOGO_LINES(
1220+
"$1 .:'\n"
1221+
" __ :'__\n"
1222+
"$2 .'` `-' ``.\n"
1223+
"$3: .-'\n"
1224+
"$4: :\n"
1225+
" : `-;\n"
1226+
"$5 `.__.-.__.'"
1227+
)
1228+
FF_LOGO_COLORS(
1229+
"32", //green
1230+
"33", //yellow
1231+
"31", //red
1232+
"35", //magenta
1233+
"34" //blue
1234+
)
1235+
FF_LOGO_COLOR_KEYS("33"); //yellow
1236+
FF_LOGO_COLOR_TITLE("32"); //green
1237+
FF_LOGO_RETURN
1238+
}
1239+
11901240
static const FFlogo* getLogoManjaro()
11911241
{
11921242
FF_LOGO_INIT
@@ -2503,6 +2553,8 @@ GetLogoMethod* ffLogoBuiltinGetAll()
25032553
getLogoLangitKetujuh,
25042554
getLogoLinux,
25052555
getLogoMacOS,
2556+
getLogoMacOSSmall,
2557+
getLogoMacOSSmall2,
25062558
getLogoManjaro,
25072559
getLogoManjaroSmall,
25082560
getLogoMint,

0 commit comments

Comments
 (0)