add themes

This commit is contained in:
Your Name 2024-01-03 15:09:07 +03:00
parent 7ab3e8ef0c
commit a3a17c2b8b
11 changed files with 163 additions and 26 deletions

View file

@ -9,9 +9,14 @@ typedef struct {
} PARAMETR;
/* Config, EDIT THERE */
#define COLORS "\033[31m<> \033[32m<> \033[33m<> \033[34m<> \033[35m<> \033[36m<>\033[0m"
#define FONT_COLOR "\033[1;37m"
#define PC_CHAR "<>"
/* #define PRINT_TOTAL_MEM */
/* #define PRINT_USER_MEM */
#define PRINT_USED_AND_TOTAL_MEM
#ifdef _MAIN_H
PARAMETR CONFIG[] = {
{" os ", PrintOs},
@ -19,13 +24,14 @@ PARAMETR CONFIG[] = {
{" usr ", GetUser},
{" upt ", GetUptime},
{" arch ", GetArch},
{" shl ", GetShell},
{" pkg ", GetPkg},
{"shell ", GetShell},
{" pkgs ", GetPkg},
{" mem ", GetMem},
{" mod ", GetModel},
{"model ", GetModel},
{" host ", GetHostname},
{" lAVG ", GetAVG},
{" ", Blank},
{" ", PrintColors}
{COLORS, Blank}
};
#endif