31 lines
941 B
C
31 lines
941 B
C
|
#ifndef _CONFIG_H
|
||
|
#define _CONFIG_H
|
||
|
|
||
|
#include "fetch.h"
|
||
|
#include "structs.h"
|
||
|
|
||
|
/* 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"
|
||
|
|
||
|
#ifdef _MAIN_C
|
||
|
PARAMETR CONFIG[] = {
|
||
|
{PrintOs, {.str0=" os ", .str1=NULL}},
|
||
|
{GetKernel, {.str0=" kr ", .str1=NULL}},
|
||
|
{GetUser, {.str0=" usr ", .str1=NULL}},
|
||
|
{GetUptime, {.str0=" upt ", .str1=NULL}},
|
||
|
{GetArch, {.str0=" arch ", .str1=NULL}},
|
||
|
{GetShell, {.str0="shell ", .str1=NULL}},
|
||
|
{GetPkg, {.str0=" pkgs ", .str1=NULL}},
|
||
|
{GetMem, {.str0=" mem ", .str1=NULL}},
|
||
|
{GetModel, {.str0="model ", .str1=NULL}},
|
||
|
{GetHostname, {.str0=" host ", .str1=NULL}},
|
||
|
{GetAVG, {.str0=" AVG ", .str1=NULL}},
|
||
|
{Blank, {.str0=" ", .str1=NULL}},
|
||
|
{Execute, {.str0=" Id's ", .str1=NULL, .str2="id -gn"}},
|
||
|
{Blank, {.str0=COLORS, .str1=NULL}}
|
||
|
};
|
||
|
#endif
|
||
|
|
||
|
#endif
|