27 lines
709 B
C
27 lines
709 B
C
#ifndef _CONFIG_H
|
|
#define _CONFIG_H
|
|
|
|
#include "fetch.h"
|
|
#include "structs.h"
|
|
|
|
#define STRIP_RESET_ESCAPE
|
|
#define STRIP_LOGO_ESCAPES
|
|
#define FONT_COLOR ""
|
|
#define LOGO_COLOR ""
|
|
|
|
#ifdef _MAIN_C
|
|
PARAMETR CONFIG[] = {
|
|
{PrintOs, {.str0=" Os : ", .str1=NULL}},
|
|
{GetMem, {.str0=" Mem : ", .str1=NULL}},
|
|
{GetModel, {.str0=" Host : ", .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-"}},
|
|
{Execute, {.str0=" Playing: ", .str2="basename \"$(mocp -Q \"%file\")\""}}
|
|
};
|
|
#endif
|
|
|
|
#endif
|