#define _FETCH_C #include #include #include #include #include #include #include #include #include #include "fetch.h" #include "structs.h" #include "config.h" #include "logo.h" #define UNUSED(x) ((void)x) FETCH Init(void) { FETCH fetch; if (uname(&fetch.uts) < 0) { fprintf(stderr, "kfetch: %s\n", strerror(errno)); exit(1); } memset(fetch.os_name, '\0', sizeof(fetch.os_name)); if (GetOs(fetch.os_name, sizeof(fetch.os_name))) snprintf(fetch.os_name, sizeof(fetch.os_name), "%s", fetch.uts.sysname); GetArt(&fetch, 1); return fetch; } int GetOs(char *buf, size_t len) { FILE *fp = fopen("/etc/os-release", "r"); if (fp == NULL) return 1; while (fgets(buf, len, fp)) { if (!strncmp(buf, "PRETTY_NAME=\"", 5)) { buf[strlen(buf) - 2] = '\0'; fclose(fp); char *tmp = strdup(buf); if (tmp == NULL) return 1; snprintf(buf, len, "%s", tmp + strlen("PRETTY_NAME=\"")); free(tmp); return 0; } } fclose(fp); return 1; } void SetArt(FETCH *fetch, size_t size, char *pkg_cmd, char **logo, char *color, int flag) { fetch->logo_size = size / sizeof(char *); fetch->logo = logo; if (flag) fetch->pkg_cmd = pkg_cmd; fetch->color = color; } void GetArt(FETCH *fetch, int flag) { if (strstr(fetch->os_name, "Debian")) SetArt(fetch, sizeof(Debian), "dpkg -l | tail -n+6 | wc -l | tr -d ' '", Debian, "\033[0;31m", flag); else if (strstr(fetch->os_name, "Void")) SetArt(fetch, sizeof(Void), "xbps-query -l | wc -l", Void, "\033[0;32m", flag); else if (strstr(fetch->os_name, "Alpine")) SetArt(fetch, sizeof(Alpine), "grep 'P:' /lib/apk/db/installed | wc -l", Alpine, "\033[1;34m", flag); else if (strstr(fetch->os_name, "Arch") || strstr(fetch->os_name, "Artix")) SetArt(fetch, sizeof(Arch), "pacman -Qq | wc -l", Arch, "\033[0;34m", flag); else if (strstr(fetch->os_name, "Ubuntu")) SetArt(fetch, sizeof(Ubuntu), "dpkg -l | tail -n+6 | wc -l | tr -d ' '", Ubuntu, "\033[1;33m", flag); else if (strstr(fetch->os_name, "Mint")) SetArt(fetch, sizeof(Lmint), "dpkg -l | tail -n+6 | wc -l | tr -d ' '", Lmint, "\033[1;32m", flag); else if (strstr(fetch->os_name, "OpenBSD")) SetArt(fetch, sizeof(OpenBSD), "/bin/ls -1 /var/db/pkg/ | wc -l | tr -d ' '", OpenBSD, "\033[1;33m", flag); else if (strstr(fetch->os_name, "Manana")) SetArt(fetch, sizeof(Manana), "pacman -Qq | wc -l", Manana, "\033[1;32m", flag); else if (!chdir("/system") && !strcmp(fetch->os_name, "Linux")) SetArt(fetch, sizeof(Android), "dpkg -l | tail -n+6 | wc -l | tr -d ' '", Android, "\033[32m", flag); else SetArt(fetch, sizeof(Unknow), NULL, Unknow, "\033[1;36m", flag); } int GetKernel(struct par par, const FETCH fetch) { printf("%s%s", FONT_COLOR, fetch.uts.release); return 0; } int PrintOs(struct par par, const FETCH fetch) { printf("%s%s", FONT_COLOR, fetch.os_name); return 0; } int Blank(struct par par, const FETCH fetch) { return 0; } int GetUser(struct par par, const FETCH fetch) { UNUSED(fetch); struct passwd *pw = getpwuid(geteuid()); if (pw == 0) return 1; printf("%s%s", FONT_COLOR, pw->pw_name); return 0; } int GetUptime(struct par par, const FETCH fetch) { #ifdef CLOCK struct timespec uptime; if (clock_gettime(CLOCK, &uptime) == -1) return 1; int days = uptime.tv_sec / 86400; int hours = uptime.tv_sec / 3600; int mins = (uptime.tv_sec / 60) - (uptime.tv_sec / 3600 * 60); if (days > 0) printf("%s%d days", FONT_COLOR, days); else printf("%s%dh %dm", FONT_COLOR, hours, mins); return 0; #endif return 1; } int GetArch(struct par par, const FETCH fetch) { printf("%s%s", FONT_COLOR, fetch.uts.machine); return 0; } int GetShell(struct par par, const FETCH fetch) { char *shell = getenv("SHELL"); if (shell == NULL) return 1; char *splt = strrchr(shell, '/'); if (splt == NULL) return 1; printf("%s%s", FONT_COLOR, splt + 1); return 0; } int GetPkg(struct par par, const FETCH fetch) { if (fetch.pkg_cmd == NULL) return 1; FILE *fp = popen(fetch.pkg_cmd, "r"); if (fp == NULL) return 1; printf("%s", FONT_COLOR); int ch; while ((ch = getc(fp))) { if (ch == EOF || ch == '\n') break; putchar(ch); } pclose(fp); return 0; } int GetMem(struct par par, const FETCH fetch) { FILE *fp = fopen("/proc/meminfo", "r"); if (fp == NULL) return 1; off_t free = 0, total = 0, cached = 0, buffer = 0, unused = 0; if (fscanf(fp, "MemTotal: %jd kB\nMemFree: %jd kB\nMemAvailable: %jd kB\nBuffers: %jd kB\nCached: %jd kB", &total, &free, &unused, &buffer, &cached) < 0) return 1; fclose(fp); printf("%s%lumb / %lumb", FONT_COLOR, (uintmax_t)(total - (cached + free + buffer)) / 1024, (uintmax_t)total / 1024); return 0; } int GetModel(struct par par, const FETCH fetch) { FILE *fp = NULL; for (size_t i = 0; i < sizeof(MODELS) / sizeof(char *); i++) { fp = fopen(MODELS[i], "r"); if (fp != NULL) break; } if (fp == NULL) return 1; char model_buffer[MODEL_BUFF_SIZE + 1]; char *ptr = fgets(model_buffer, sizeof(model_buffer), fp); if (ptr != NULL) { /* del \n */ char *ptr = strchr(model_buffer, '\n'); if (ptr != NULL) *ptr = '\0'; printf("%s%.25s", FONT_COLOR, model_buffer); } fclose(fp); return 0; } int GetHostname(struct par par, const FETCH fetch) { char hostname[HOST_NAME_MAX + 1]; if (gethostname(hostname, sizeof(hostname)) < 0) return 1; printf("%s%s", FONT_COLOR, hostname); return 0; } int GetAVG(struct par par, const FETCH fetch) { #ifndef __ANDROID__ double avg[3] = {0, 0, 0}; if (getloadavg(avg, sizeof(avg) / sizeof(avg[0])) < 0) return 1; printf("%s%.2f %.2f %.2f", FONT_COLOR, avg[0], avg[1], avg[2]); return 0; #else return 1; #endif } int Execute(struct par par, const FETCH fetch) { if (par.str2 == NULL) return 1; FILE *fp = popen(par.str2, "r"); if (fp == NULL) return 1; printf("%s", FONT_COLOR); int c; while ((c = getc(fp))) { if (c == EOF || c == '\n') break; putchar(c); } pclose(fp); return 0; }