From 010829cf452c05246d73917ff59e7a318c75dc8c Mon Sep 17 00:00:00 2001 From: Frederico Winter Date: Mon, 8 Sep 2025 17:29:31 -0300 Subject: [PATCH 1/2] fixed minor bug on void linux (typo error) --- src/fetch.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fetch.c b/src/fetch.c index 3cfb582..5ee736b 100644 --- a/src/fetch.c +++ b/src/fetch.c @@ -424,7 +424,7 @@ void *os() info.col8 = BRED ""; info.getPkgCount = "dpkg -l | tail -n+6 | wc -l"; - } else if (strncmp(osname, "void", 4) == 0) { + } else if (strncmp(osname, "Void", 4) == 0) { info.col1 = BGREEN " _____\n"; info.col2 = BGREEN " _ \\____ - "; info.col3 = BGREEN " / / ____ \\ \\ "; From 0b1f514e79aa5338b0bee6327bd8c7771aa4d3ea Mon Sep 17 00:00:00 2001 From: Frederico Winter Date: Mon, 8 Sep 2025 19:27:21 -0300 Subject: [PATCH 2/2] fixed another minor issue with void logo (it was passing the italic ansi code to the uptime text) --- src/fetch.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fetch.c b/src/fetch.c index 5ee736b..20c7d79 100644 --- a/src/fetch.c +++ b/src/fetch.c @@ -429,7 +429,7 @@ void *os() info.col2 = BGREEN " _ \\____ - "; info.col3 = BGREEN " / / ____ \\ \\ "; info.col4 = BGREEN " / / / \\ \\ \\"; - info.col5 = BGREEN " | | " BGRAY BITAL "VOID " BGREEN "| |"; + info.col5 = BGREEN " | | " BGRAY BITAL "VOID " RESET BGREEN "| |"; info.col6 = BGREEN " \\ \\ \\____/ / /"; info.col7 = BGREEN " \\ \\____ /_/ "; info.col8 = BGREEN " -_____\\\n";