Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add LangitKetujuh Linux logo #208

Merged
merged 1 commit into from
Aug 3, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ Title, Separator, OS, Host, Kernel, Uptime, Processes, Packages, Shell, Resoluti

##### Logos
```
Alpine, Android, Arch, Arco, Artix, Bedrock, CachyOS, CentOS, Debian, Devuan, Deepin, Endeavour, Fedora, Garuda, Gentoo, KDE Neon, KISS, Kubuntu, Linux, Manjaro, Mint, NixOS, OpenSUSE, OpenSUSE Tumbleweed, OpenSUSE LEAP, Pop!_OS, RebornOS, RedstarOS, Rocky, Rosa, Ubuntu, Void, Zorin
Alpine, Android, Arch, Arco, Artix, Bedrock, CachyOS, CentOS, Debian, Devuan, Deepin, Endeavour, Fedora, Garuda, Gentoo, KDE Neon, KISS, Kubuntu, LangitKetujuh, Linux, Manjaro, Mint, NixOS, OpenSUSE, OpenSUSE Tumbleweed, OpenSUSE LEAP, Pop!_OS, RebornOS, RedstarOS, Rocky, Rosa, 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.
Expand Down
27 changes: 27 additions & 0 deletions src/logo/builtin.c
Original file line number Diff line number Diff line change
Expand Up @@ -829,6 +829,32 @@ static const FFlogo* getLogoKubuntu()
FF_LOGO_RETURN
}

static const FFlogo* getLogoLangitKetujuh()
{
FF_LOGO_INIT
FF_LOGO_NAMES("l7", "langitketujuh", "LangitKetujuh")
FF_LOGO_LINES(
"\n"
"\n"
" $2. '7L7L7L7L7L7L7L7L7L7L7L7L7L7L7L7L7L7\n"
" $2L7. '7L7L7L7L7L7L7L7L7L7L7L7L7L7L7L7\n"
" $2L7L7L 7L7L7L7L7L7L7L7L7L7L7L7L7L7\n"
" $2L7L7L7 L7L7L7\n"
" $2L7L7L7 'L7L7L7L7L7L7L7L7L7L7\n"
" $2L7L7L7 'L7L7L7L7L7L7L7L7\n"
" $2L7L7L7 'L7L7L7L7L7L7\n"
" $2L7L7L7 L7L7L7\n"
" $2L7L7L7L7L7L7L7L7L7L7LL7L7L7. '7L7L7\n"
" $2L7L7L7L7L7L7L7L7L7L7L7L7L7L7L7L. 'L7\n"
" $2L7L7L7L7L7L7L7L7L7L7L7L7L7L7L7L7L7. '\n"
)
FF_LOGO_COLORS(
"34", //blue
"37" //white
)
FF_LOGO_RETURN
}

static const FFlogo* getLogoLinux()
{
FF_LOGO_INIT
Expand Down Expand Up @@ -1575,6 +1601,7 @@ GetLogoMethod* ffLogoBuiltinGetAll()
getLogoKDENeon,
getLogoKISSLinux,
getLogoKubuntu,
getLogoLangitKetujuh,
getLogoLinux,
getLogoManjaro,
getLogoManjaroSmall,
Expand Down