2023-11-02 14:51:10 +00:00
|
|
|
#ifndef _CONFIG_H
|
|
|
|
#define _CONFIG_H
|
2023-10-18 21:16:57 +00:00
|
|
|
|
2023-11-02 14:51:10 +00:00
|
|
|
#include "fetch.h"
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
char *title;
|
2023-11-26 09:49:11 +00:00
|
|
|
int (*func)(const char *title, const FETCH fetch);
|
2023-11-02 14:51:10 +00:00
|
|
|
} PARAMETR;
|
|
|
|
|
|
|
|
/* Config, EDIT THERE */
|
2023-12-15 15:45:57 +00:00
|
|
|
#define FONT_COLOR "\033[1;37m"
|
2024-01-03 10:18:43 +00:00
|
|
|
#define PC_CHAR "<>"
|
2023-11-02 14:51:10 +00:00
|
|
|
|
2023-12-15 15:17:49 +00:00
|
|
|
#ifdef _MAIN_H
|
|
|
|
PARAMETR CONFIG[] = {
|
2024-01-03 10:18:43 +00:00
|
|
|
{" os ", PrintOs},
|
|
|
|
{" kr ", GetKernel},
|
|
|
|
{" usr ", GetUser},
|
|
|
|
{" upt ", GetUptime},
|
|
|
|
{" arch ", GetArch},
|
|
|
|
{" shl ", GetShell},
|
|
|
|
{" pkg ", GetPkg},
|
|
|
|
{" mem ", GetMem},
|
|
|
|
{" mod ", GetModel},
|
|
|
|
{" ", Blank},
|
|
|
|
{" ", PrintColors}
|
2023-10-18 21:16:57 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
2023-12-15 15:17:49 +00:00
|
|
|
|
|
|
|
#endif
|