Merge pull request #333 from kbdharun/dev

Add Vanilla OS logo
This commit is contained in:
Linus Dierheimer
2022-11-10 18:01:03 +01:00
committed by GitHub
2 changed files with 35 additions and 1 deletions
+1 -1
View File
@@ -76,7 +76,7 @@ Title, Separator, OS, Host, Bios, Board, Kernel, Uptime, Processes, Packages, Sh
##### Logos
```
AlmaLinux, Alpine, Android, Arch, Arco, Artix, Bedrock, CachyOS, CentOS, Crystal, Debian, Devuan, Deepin, Endeavour, Fedora, FreeBSD, Garuda, Gentoo, KDE Neon, KISS, Kubuntu, LangitKetujuh, Linux, MacOS, Manjaro, Mint, MSYS2, NixOS, Nobara, OpenSUSE, OpenSUSE Tumbleweed, OpenSUSE LEAP, Parabola, Pop!_OS, RebornOS, RedstarOS, Rocky, Rosa, Slackware, Ubuntu, Void, Windows 11, Windows 8, Windows, Zorin
AlmaLinux, Alpine, Android, Arch, Arco, Artix, Bedrock, CachyOS, CentOS, Crystal, Debian, Devuan, Deepin, Endeavour, Fedora, FreeBSD, Garuda, Gentoo, KDE Neon, KISS, Kubuntu, LangitKetujuh, Linux, MacOS, Manjaro, Mint, MSYS2, NixOS, Nobara, OpenSUSE, OpenSUSE Tumbleweed, OpenSUSE LEAP, Parabola, Pop!_OS, RebornOS, RedstarOS, Rocky, Rosa, Slackware, Ubuntu, Vanilla, Void, Windows 11, Windows 8, Windows, 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.
+34
View File
@@ -2113,6 +2113,39 @@ static const FFlogo* getLogoUbuntuSmall()
FF_LOGO_RETURN
}
static const FFlogo* getLogoVanilla()
{
FF_LOGO_INIT
FF_LOGO_NAMES("vanilla", "vanilla-os","vanilla-linux");
FF_LOGO_LINES(
" .----: \n"
" .-------.\n"
" :---::----:\n"
" .----::-----.\n"
" ......... :----::-----: ..:::-::::..\n"
".-----------------::------------------:\n"
" ----::-----------::----------::::---:\n"
" -----:::--------::-------:::-------\n"
" :------::::--::...:::::---------:\n"
" .---------::.. ..:---------.\n"
" .::-----::.. .::----::.\n"
" .:------:.......:-------:\n"
" .--------::::::::-:::-------.\n"
" .-------::-----.:-----::------.\n"
" -----::------: :------::-----\n"
" :--::--------: .-------::---:\n"
" :----------:: .:----------\n"
" :--------: :--------:"
)
FF_LOGO_COLORS(
"33" //yellow
)
FF_LOGO_COLOR_KEYS("33"); // yellow
FF_LOGO_COLOR_TITLE("33"); // yellow
FF_LOGO_RETURN
}
static const FFlogo* getLogoVoid()
{
FF_LOGO_INIT
@@ -2272,6 +2305,7 @@ GetLogoMethod* ffLogoBuiltinGetAll()
getLogoUbuntu,
getLogoUbuntuOld,
getLogoUbuntuSmall,
getLogoVanilla,
getLogoVoid,
getLogoVoidSmall,
getLogoZorin,