Skip to content

Commit eb53797

Browse files
zamhedoniazamhedoniaCarterLi
authored
Logo (Builtin): adds support for Emmabuntüs (#2207)
* Logo (Builtin): adds Emmabuntüs Logo * Add Detection for Emmabuntüs * Update ASCII art in emmabuntus.txt * Remove duplicate name for Emmabuntus logo * Update emmabuntus.txt * Update colors for Emmabuntus logo --------- Co-authored-by: zamhedonia <zamhedonia@gmx.de> Co-authored-by: Carter Li <CarterLi@users.noreply.github.com>
1 parent c8c32a7 commit eb53797

File tree

3 files changed

+33
-0
lines changed

3 files changed

+33
-0
lines changed

src/detection/os/os_linux.c

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -269,6 +269,15 @@ FF_MAYBE_UNUSED static bool detectDebianDerived(FFOSResult* result)
269269
ffStrbufSetStatic(&result->prettyName, "TrueNAS Scale");
270270
return true;
271271
}
272+
else if (ffPathExists("/usr/bin/emmabuntus_config.sh", FF_PATHTYPE_FILE))
273+
{
274+
// Emmabuntüs
275+
ffStrbufSetStatic(&result->id, "emmabuntus");
276+
ffStrbufSetStatic(&result->idLike, "debian");
277+
ffStrbufSetStatic(&result->name, "Emmabuntüs");
278+
getDebianVersion(result);
279+
return true;
280+
}
272281
else
273282
{
274283
// Hack for MX Linux. See #847

src/logo/ascii/emmabuntus.txt

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
_~~_
2+
nmmmmmmm/$2/**\$1\
3+
nmHhHMMMHh\$2\__/$1/
4+
nm zot $2__$1 t*~~*n
5+
m b $2_+*´cc`*+_$1 p m
6+
m & $2/%cc,;;,cc%\$1 & m
7+
_~~_ & $2c__ +cc$1 & n
8+
/$2/**\$1\& $2cc;$1 & m
9+
\$2\__/$1/& $2c~~ +cc´$1 & n
10+
*~~* & $2\cc%*--*%cc/$1 & m
11+
m b $2`+.cccc.+´$1 p m
12+
nm zo o_~~_
13+
nmHhHMMMHhH/$2/**\$1\
14+
nmmmmmmmm\$2\__/$1/
15+
*~~*

src/logo/builtin.c

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1573,6 +1573,15 @@ static const FFlogo E[] = {
15731573
.colorKeys = FF_COLOR_FG_DEFAULT,
15741574
.colorTitle = FF_COLOR_FG_CYAN,
15751575
},
1576+
// Emmabuntüs
1577+
{
1578+
.names = {"Emmabuntus"},
1579+
.lines = FASTFETCH_DATATEXT_LOGO_EMMABUNTUS,
1580+
.colors = {
1581+
FF_COLOR_FG_BLUE,
1582+
FF_COLOR_FG_YELLOW,
1583+
},
1584+
},
15761585
// EmperorOS
15771586
{
15781587
.names = {"Emperor"},

0 commit comments

Comments
 (0)