GetMem add

This commit is contained in:
Your Name 2023-12-15 17:02:25 +03:00
parent ede4cea77c
commit 14fce9786e
4 changed files with 39 additions and 8 deletions

View file

@ -36,5 +36,6 @@ int GetUptime(const char *title, const FETCH fetch);
int GetArch(const char *title, const FETCH fetch);
int GetShell(const char *title, const FETCH fetch);
int GetPkg(const char *title, const FETCH fetch);
int GetMem(const char *title, const FETCH fetch);
#endif

View file

@ -2,6 +2,7 @@
#define _LOGOS_H
char *Debian[] = {
" ",
"\033[31m _____ ",
"\033[31m / __ \\ ",
"\033[31m| / | ",
@ -12,6 +13,7 @@ char *Debian[] = {
};
char *Void[] = {
" ",
"\033[32m _\033[36m________ ",
"\033[32m / \\\033[36m\\ _ \\ ",
"\033[32m| /\\\033[36m\\ \\ | ",
@ -22,6 +24,7 @@ char *Void[] = {
};
char *Alpine[] = {
" ",
"\033[34m /\\ /\\ ",
"\033[34m / \\ \\ ",
"\033[34m / \\ \\ ",
@ -32,6 +35,7 @@ char *Alpine[] = {
};
char *Arch[] = {
" ",
"\033[1;34m /\\ ",
"\033[1;34m / \\ ",
"\033[1;34m /\\ \\ ",
@ -43,6 +47,7 @@ char *Arch[] = {
};
char *Android[] = {
" ",
"\033[32m ;, ,; ",
"\033[32m ';,.-----.,;' ",
"\033[32m ,' ', ",
@ -53,6 +58,7 @@ char *Android[] = {
};
char *OpenBSD[] = {
" ",
"\033[1;33m _____ ",
"\033[1;33m \\- -/ ",
"\033[1;33m \\_/ \\ ",
@ -64,6 +70,7 @@ char *OpenBSD[] = {
};
char *PlainOs[] = {
" ",
" (\\(\\ ",
" j . .) ",
" | ° ! ",
@ -73,12 +80,13 @@ char *PlainOs[] = {
};
char *Ubuntu[] = {
"\033[1;32m _ ",
"\033[1;32m ---(_) ",
"\033[1;32m _/ --- \\ ",
"\033[1;32m(_) | | ",
"\033[1;32m \\ --- _/ ",
"\033[1;32m ---(_) ",
" ",
"\033[1;33m _ ",
"\033[1;33m ---(_) ",
"\033[1;33m _/ --- \\ ",
"\033[1;33m(_) | | ",
"\033[1;33m \\ --- _/ ",
"\033[1;33m ---(_) ",
" ",
};