From 078b018ebca7af788a596f25b94fdcef095a1e78 Mon Sep 17 00:00:00 2001 From: Your Name Date: Tue, 6 Aug 2024 11:59:05 +0300 Subject: [PATCH] fixed --- build.sh | 15 --------------- src/main.c | 2 +- themes/default.h | 32 -------------------------------- 3 files changed, 1 insertion(+), 48 deletions(-) delete mode 100644 themes/default.h diff --git a/build.sh b/build.sh index 629fb5c..baaa7ad 100755 --- a/build.sh +++ b/build.sh @@ -3,21 +3,6 @@ CC=cc FLAGS="-Os -s -pedantic -Wall -Wextra" -#Test -echo -e "#include \nint main(void){return 0;}" > file.c -cc file.c -o test -rm file.c - -if ! ./test -then - rm test - echo "Install libc-headers and C compiler (ep: tcc, clang, gcc)" - - exit 1 -fi - -rm test - #Compile $CC -Iinclude -I. src/main.c -c -o main.o && $CC -Iinclude -I. src/fetch.c -c -o fetch.o && diff --git a/src/main.c b/src/main.c index 2cf2833..39efb87 100644 --- a/src/main.c +++ b/src/main.c @@ -22,7 +22,7 @@ int main(int argc, char **argv) { case 'h': default: - printf("kfetch [-hld]\n\t-h Help menu\n\t-l Doesnt print logo\n\t-d N Set N as distro name\n"); + printf("kfetch [-hld]\n\t-h Help\n\t-l Dont print logo\n\t-d NAME\n"); return 0; } } diff --git a/themes/default.h b/themes/default.h deleted file mode 100644 index 26d2d7f..0000000 --- a/themes/default.h +++ /dev/null @@ -1,32 +0,0 @@ -#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 -#define ON_ERROR_STR "none" - -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