Add Vanilla OSlogo

Adding logo for Vanilla OS a new and upcoming Ubuntu based distribution that uses Vanilla GNOME and uses on-demand immutability.

Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
This commit is contained in:
K.B.Dharun Krishna
2022-11-08 10:50:04 +05:30
parent 922de3755b
commit 67feba6171
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,