2023-11-02 14:51:10 +00:00
|
|
|
#ifndef _FUNCS_H
|
|
|
|
#define _FUNCS_H
|
|
|
|
|
|
|
|
#include <time.h>
|
|
|
|
#include <sys/utsname.h>
|
|
|
|
|
|
|
|
#if defined(CLOCK_BOOTTIME)
|
|
|
|
#define CLOCK CLOCK_BOOTTIME
|
|
|
|
#elif defined(CLOCK_UPTIME)
|
|
|
|
#define CLOCK CLOCK_UPTIME
|
|
|
|
#elif defined(__APPLE__)
|
|
|
|
#define CLOCK CLOCK_MONOTONIC
|
|
|
|
#endif
|
|
|
|
|
2023-11-26 10:13:38 +00:00
|
|
|
#define OS_SIZE 128
|
2023-11-02 14:51:10 +00:00
|
|
|
typedef struct {
|
2023-12-15 19:24:22 +00:00
|
|
|
char os_buf[OS_SIZE + 1];
|
|
|
|
char *os_name;
|
|
|
|
|
2023-11-02 14:51:10 +00:00
|
|
|
struct utsname uts;
|
|
|
|
|
|
|
|
char *pkg_cmd;
|
|
|
|
char *color;
|
|
|
|
char *font_color;
|
|
|
|
size_t logo_size;
|
|
|
|
char **logo;
|
|
|
|
} FETCH;
|
|
|
|
|
|
|
|
FETCH Init(void);
|
|
|
|
int GetOs(char *os_name, size_t len);
|
|
|
|
void GetArt(FETCH *fetch);
|
2023-11-26 09:49:11 +00:00
|
|
|
int GetKernel(const char *title, const FETCH fetch);
|
|
|
|
int PrintOs(const char *title, const FETCH fetch);
|
|
|
|
int PrintColors(const char *title, const FETCH fetch);
|
|
|
|
int Blank(const char *title, const FETCH fetch);
|
|
|
|
int GetUser(const char *title, const FETCH fetch);
|
|
|
|
int GetUptime(const char *title, const FETCH fetch);
|
|
|
|
int GetArch(const char *title, const FETCH fetch);
|
|
|
|
int GetShell(const char *title, const FETCH fetch);
|
|
|
|
int GetPkg(const char *title, const FETCH fetch);
|
2023-12-15 14:02:25 +00:00
|
|
|
int GetMem(const char *title, const FETCH fetch);
|
2023-11-02 14:51:10 +00:00
|
|
|
|
|
|
|
#endif
|