kfetch/config.h

23 lines
357 B
C

#ifndef _CONFIG_H
#define _CONFIG_H
#include "fetch.h"
typedef struct {
char *title;
void (*func)(const char *title, const FETCH fetch);
} PARAMETR;
/* Config, EDIT THERE */
#define FONT_COLOR "\033[37m"
#define PC_CHAR "%"
static PARAMETR CONFIG[] = {
{"Krnl ", GetKernel},
{"Os ", PrintOs},
{" ", Blank},
{" ", PrintColors}
};
#endif