25 lines
566 B
C
25 lines
566 B
C
#ifndef _CONFIG_H
|
|
#define _CONFIG_H
|
|
|
|
#include "fetch.h"
|
|
#include "structs.h"
|
|
|
|
/* Config, EDIT THERE */
|
|
#define FONT_COLOR "\033[1;37m"
|
|
|
|
#ifdef _MAIN_C
|
|
#define ON_ERROR_STR "none"
|
|
|
|
PARAMETR CONFIG[] = {
|
|
{PrintOs, {.str0=" Os : ", .str1=NULL}},
|
|
{GetMem, {.str0=" Mem : ", .str1=NULL}},
|
|
{GetUptime, {.str0=" Uptime : ", .str1=NULL}},
|
|
|
|
{Blank, {.str0=" ", .str1=NULL}},
|
|
{GetUser, {.str0=" ", .str1=",%s Hi!"}},
|
|
{Execute, {.str0=" Outside: ", .str2="wget https://wttr.in/?format=\"%t+%C\" -qO-"}}
|
|
};
|
|
#endif
|
|
|
|
#endif
|