GetMem fix

This commit is contained in:
Your Name 2023-12-15 18:02:11 +03:00
parent 14fce9786e
commit 8a789784cc
3 changed files with 28 additions and 30 deletions

View file

@ -13,16 +13,16 @@ typedef struct {
#define PC_CHAR "%"
static PARAMETR CONFIG[] = {
{" OS ", PrintOs},
{" KERNEL ", GetKernel},
{" USER ", GetUser},
{" UPTIME ", GetUptime},
{" ARCH ", GetArch},
{" SHELL ", GetShell},
{" PKGS ", GetPkg},
{" RAM ", GetMem},
{" ", Blank},
{" COLORS ", PrintColors}
{" OS ", PrintOs},
{" KERNEL ", GetKernel},
{" USER ", GetUser},
{" UPTIME ", GetUptime},
{" ARCH ", GetArch},
{" SHELL ", GetShell},
{" PKGS ", GetPkg},
{" RAM ", GetMem},
{" ", Blank},
{" COLORS ", PrintColors}
};
#endif