Skip to content

Commit 4d8680e

Browse files
Merge pull request #160 from draumaz/master
Add Devuan logo
2 parents c79a9f1 + 039eb3a commit 4d8680e

File tree

2 files changed

+49
-1
lines changed

2 files changed

+49
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ Title, Separator, OS, Host, Kernel, Uptime, Processes, Packages, Shell, Resoluti
4545

4646
##### Logos
4747
```
48-
Android, Arch, Arco, Artix, CachyOS, CentOS, Debian, Deepin, Endeavour, Fedora, Garuda, Gentoo, KDE Neon, Kubuntu, Linux, Manjaro, Mint, NixOS, OpenSUSE, OpenSUSE Tumbleweed, OpenSUSE LEAP, Pop!_OS, RebornOS, RedstarOS, Ubuntu, Void, Zorin
48+
Android, Arch, Arco, Artix, CachyOS, CentOS, Debian, Devuan, Deepin, Endeavour, Fedora, Garuda, Gentoo, KDE Neon, Kubuntu, Linux, Manjaro, Mint, NixOS, OpenSUSE, OpenSUSE Tumbleweed, OpenSUSE LEAP, Pop!_OS, RebornOS, RedstarOS, Ubuntu, Void, Zorin
4949
```
5050
* Most of the logos have a small variant. Access it by appending _small to the logo name.
5151
* Some logos have an old variant. Access it by appending _old to the logo name.

src/logo/builtin.c

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -408,6 +408,52 @@ static const FFlogo* getLogoDebianSmall()
408408
FF_LOGO_RETURN
409409
}
410410

411+
static const FFlogo* getLogoDevuan()
412+
{
413+
FF_LOGO_INIT
414+
FF_LOGO_NAMES("devuan", "devuan-linux")
415+
FF_LOGO_LINES(
416+
" ..,,;;;::;,..\n"
417+
" `':ddd;:,.\n"
418+
" `'dPPd:,.\n"
419+
" `:b$$b`.\n"
420+
" 'P$$$d`\n"
421+
" .$$$$$`\n"
422+
" ;$$$$$P\n"
423+
" .:P$$$$$$`\n"
424+
" .,:b$$$$$$$;'\n"
425+
" .,:dP$$$$$$$$b:'\n"
426+
" .,:;db$$$$$$$$$$Pd'`\n"
427+
" ,db$$$$$$$$$$$$$$b:'`\n"
428+
":$$$$$$$$$$$$b:'`\n"
429+
" `$$$$$bd:''`\n"
430+
" `'''`\n"
431+
)
432+
FF_LOGO_COLORS(
433+
"35" //magenta
434+
)
435+
FF_LOGO_RETURN
436+
}
437+
438+
static const FFlogo* getLogoDevuanSmall()
439+
{
440+
FF_LOGO_INIT
441+
FF_LOGO_NAMES("devuan_small", "devuan-linux-small")
442+
FF_LOGO_LINES(
443+
" ..:::.\n"
444+
" ..-==-\n"
445+
" .+#:\n"
446+
" =@@\n"
447+
" :+%@#:\n"
448+
".:=+#@@%*:\n"
449+
"#@@@#=:\n"
450+
)
451+
FF_LOGO_COLORS(
452+
"34" //blue
453+
)
454+
FF_LOGO_RETURN
455+
}
456+
411457
static const FFlogo* getLogoDeepin()
412458
{
413459
FF_LOGO_INIT
@@ -1354,6 +1400,8 @@ static GetLogoMethod* getLogos()
13541400
getLogoCentOS,
13551401
getLogoCentOSSmall,
13561402
getLogoDebian,
1403+
getLogoDevuan,
1404+
getLogoDevuanSmall,
13571405
getLogoDebianSmall,
13581406
getLogoDeepin,
13591407
getLogoEndeavour,

0 commit comments

Comments
 (0)