Merge pull request #160 from draumaz/master

Add Devuan logo
This commit is contained in:
Linus Dierheimer
2022-05-15 23:46:56 +02:00
committed by GitHub
2 changed files with 49 additions and 1 deletions
+1 -1
View File
@@ -45,7 +45,7 @@ Title, Separator, OS, Host, Kernel, Uptime, Processes, Packages, Shell, Resoluti
##### Logos
```
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
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
```
* Most of the logos have a small variant. Access it by appending _small to the logo name.
* Some logos have an old variant. Access it by appending _old to the logo name.
+48
View File
@@ -408,6 +408,52 @@ static const FFlogo* getLogoDebianSmall()
FF_LOGO_RETURN
}
static const FFlogo* getLogoDevuan()
{
FF_LOGO_INIT
FF_LOGO_NAMES("devuan", "devuan-linux")
FF_LOGO_LINES(
" ..,,;;;::;,..\n"
" `':ddd;:,.\n"
" `'dPPd:,.\n"
" `:b$$b`.\n"
" 'P$$$d`\n"
" .$$$$$`\n"
" ;$$$$$P\n"
" .:P$$$$$$`\n"
" .,:b$$$$$$$;'\n"
" .,:dP$$$$$$$$b:'\n"
" .,:;db$$$$$$$$$$Pd'`\n"
" ,db$$$$$$$$$$$$$$b:'`\n"
":$$$$$$$$$$$$b:'`\n"
" `$$$$$bd:''`\n"
" `'''`\n"
)
FF_LOGO_COLORS(
"35" //magenta
)
FF_LOGO_RETURN
}
static const FFlogo* getLogoDevuanSmall()
{
FF_LOGO_INIT
FF_LOGO_NAMES("devuan_small", "devuan-linux-small")
FF_LOGO_LINES(
" ..:::.\n"
" ..-==-\n"
" .+#:\n"
" =@@\n"
" :+%@#:\n"
".:=+#@@%*:\n"
"#@@@#=:\n"
)
FF_LOGO_COLORS(
"34" //blue
)
FF_LOGO_RETURN
}
static const FFlogo* getLogoDeepin()
{
FF_LOGO_INIT
@@ -1354,6 +1400,8 @@ static GetLogoMethod* getLogos()
getLogoCentOS,
getLogoCentOSSmall,
getLogoDebian,
getLogoDevuan,
getLogoDevuanSmall,
getLogoDebianSmall,
getLogoDeepin,
getLogoEndeavour,