Skip to content

Commit

Permalink
Fixed Fetch Alignment for Void Linux (#67)
Browse files Browse the repository at this point in the history
  • Loading branch information
mateoppalacios committed May 16, 2021
1 parent 5aa7009 commit 62b6eb2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/colour.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@
#define WHITE "\033[0;37m"
/* OTHER */
#define RESET "\033[0;m"
#define BITAL "\033[1;3m"
#define BITAL "\033[1;3m"
7 changes: 3 additions & 4 deletions src/fetch.c
Original file line number Diff line number Diff line change
Expand Up @@ -395,16 +395,15 @@ void *os()
"dpkg -l | tail -n+6 | wc -l";
} else if (strncmp(osname, "void", 4) == 0) {
info.col1 = BGREEN " _____\n";
info.col2 = BGREEN " _ \\____ -";
info.col3 = BGREEN " / / ____ \\ \\";
info.col2 = BGREEN " _ \\____ - ";
info.col3 = BGREEN " / / ____ \\ \\ ";
info.col4 = BGREEN " / / / \\ \\ \\";
info.col5 = BGREEN " | | " BGRAY BITAL "VOID " BGREEN "| |";
info.col6 = BGREEN " \\ \\ \\____/ / /";
info.col7 = BGREEN " \\ \\____ /_/";
info.col7 = BGREEN " \\ \\____ /_/ ";
info.col8 = BGREEN " -_____\\\n";
info.getPkgCount = "xbps-query -l | wc -l";
}

} else if (strncmp(sysInfo.sysname, "Darwin", 6) == 0) {
info.col1 = "" BYELLOW;
info.col2 = BGREEN " .:' " BYELLOW;
Expand Down

0 comments on commit 62b6eb2

Please sign in to comment.