#ifndef _CONFIG_H #define _CONFIG_H #include "fetch.h" typedef struct { char *title; int (*func)(const char *title, const FETCH fetch); } PARAMETR; /* Config, EDIT THERE */ #define COLORS " \033[31m(>_<) \033[32m(OwO) \033[33m($w$) \033[34m(;~;)\033[0m" #define FONT_COLOR "\033[0m" #define BAR_WIDTH 1 #define BATT_NAME NULL #ifdef _MAIN_H PARAMETR CONFIG[] = { {" -> ", PrintOs}, {" ", Blank}, {" <- ", GetUptime}, {" ", Blank}, {" -> ", GetMem}, {" ", Blank}, {" <- ", GetArch}, {" ", Blank}, {COLORS, Blank} }; #endif #endif