Merge pull request #67 from prettykool/main

GNU stuff.
This commit is contained in:
TheDarkBug 2021-04-10 18:24:35 +02:00 committed by GitHub
commit de7517af99
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 26 additions and 2 deletions

View file

@ -4,7 +4,7 @@ A meme system info tool for (almost) all your Linux/Unix-based systems, based on
## Currently supported distros ## Currently supported distros
#### Full support (Both Ascii art + images are provided for the given distribution) #### Full support (Both Ascii art + images are provided for the given distribution)
Nyalpine, Nyarch Linuwu, Nyartix Linuwu, Debinyan, Fedowa, GentOwO, Miwint, Myanjawo, OwOpenSUSE, Pop OwOs, RaspNyan, UwUntu, and OwOid; Plus Nyandroid. Nyalpine, Nyarch Linuwu, Nyartix Linuwu, Debinyan, Fedowa, GentOwO, GnUwU gUwUix, Miwint, Myanjawo, OwOpenSUSE, Pop OwOs, RaspNyan, UwUntu, and OwOid; Plus Nyandroid.
#### Partial support (Either no Ascii art, or no image is provided) #### Partial support (Either no Ascii art, or no image is provided)
endeavOwO, KDE NeOwOn, nixOwOs, Swackwawe, sOwOlus; Plus FweeBSD, and OwOpenBSD endeavOwO, KDE NeOwOn, nixOwOs, Swackwawe, sOwOlus; Plus FweeBSD, and OwOpenBSD

View file

@ -123,6 +123,23 @@ I am not a copyright expert, and maybe I am doing all wrong things, please corre
# #
## GNU
<img title="GnUwU" src="https://raw.githubusercontent.com/TheDarkBug/uwufetch/main/res/guix.png" alt="image" width="100">
### Base artwork:
- Copyright Holder: Aurelio A. Heckert (aurium@gmail.com)
- License: [CC BY-SA 2.0](https://creativecommons.org/licenses/by-sa/2.0/)
- [Reference](https://www.gnu.org/graphics/heckert_gnu.svg)
### Modifications
- Description: Addition of ahegao facial expression, and colorization.
- Copyright Holder: [u/FOSSphorous](https://www.reddit.com/user/FOSSphorous/)
- License: [CC BY-SA 2.0](https://creativecommons.org/licenses/by-sa/2.0/)
- [Reference](https://www.reddit.com/r/linuxmasterrace/comments/lyi8ce/its_actually_gnuwulinux/)
## Manjaro ## Manjaro
<img title="Myanjawo" src="https://raw.githubusercontent.com/TheDarkBug/uwufetch/main/res/manjaro.png" alt="image" width="100"> <img title="Myanjawo" src="https://raw.githubusercontent.com/TheDarkBug/uwufetch/main/res/manjaro.png" alt="image" width="100">

BIN
res/guix.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 71 KiB

View file

@ -337,6 +337,12 @@ void print_ascii() { // prints logo (as ascii art) of the given system. distribu
"%s \\ )\n" "%s \\ )\n"
" / _/\n" " / _/\n"
" ( _-\n" " \\____-\n\n", MAGENTA, WHITE); " ( _-\n" " \\____-\n\n", MAGENTA, WHITE);
} else if (strcmp(version_name, "gnu") == 0 || strcmp(version_name, "guix") == 0) {
printf( "\033[3E\033[3C%s,= %s,-_-. %s=.\n"
" ((_/%s)%sU U%s(%s\\_))\n"
" `-'%s(. .)%s`-'\n"
" %s\\%sw%s/\n"
" \u00af\n\n", WHITE, YELLOW, WHITE, YELLOW, WHITE, YELLOW, WHITE, YELLOW, WHITE, YELLOW, WHITE, YELLOW);
} else if (strcmp(version_name, "manjaro") == 0) { } else if (strcmp(version_name, "manjaro") == 0) {
printf( "\033[0E\033[1C\u25b3 \u25b3 \u25e0\u25e0\u25e0\u25e0\n" printf( "\033[0E\033[1C\u25b3 \u25b3 \u25e0\u25e0\u25e0\u25e0\n"
" \e[0;42m \e[0m \e[0;42m \e[0m\n" " \e[0;42m \e[0m \e[0;42m \e[0m\n"
@ -482,6 +488,7 @@ void uwu_name() { // uwufies distro name
else STRING_TO_UWU("endeavour", "endeavOwO"); else STRING_TO_UWU("endeavour", "endeavOwO");
else STRING_TO_UWU("fedora", "Fedowa"); else STRING_TO_UWU("fedora", "Fedowa");
else STRING_TO_UWU("gentoo", "GentOwO"); else STRING_TO_UWU("gentoo", "GentOwO");
else STRING_TO_UWU("gnu", "gnUwU");
else STRING_TO_UWU("guix", "gnUwU gUwUix"); else STRING_TO_UWU("guix", "gnUwU gUwUix");
else STRING_TO_UWU("linuxmint", "LinUWU Miwint"); else STRING_TO_UWU("linuxmint", "LinUWU Miwint");
else STRING_TO_UWU("manjaro", "Myanjawo"); else STRING_TO_UWU("manjaro", "Myanjawo");