Skip to content

Commit

Permalink
Improved Void's Logo and Made Installation Simpler (#66)
Browse files Browse the repository at this point in the history
  • Loading branch information
mateoppalacios committed May 16, 2021
1 parent ace7d51 commit 5aa7009
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 9 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ debug:
clean:
rm -rf afetch afetch.dSYM afetch-debug afetch-debug.dSYM

install:
install: afetch
mkdir -p ${DESTDIR}${PREFIX}/bin
cp afetch ${DESTDIR}${PREFIX}/bin
chmod 711 ${DESTDIR}${PREFIX}/bin/afetch
Expand Down
2 changes: 2 additions & 0 deletions src/colour.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
/* BOLD COLOURS */
#define BBLACK "\033[1;30m"
#define BGRAY "\033[1;90m"
#define BRED "\033[1;31m"
#define BGREEN "\033[1;32m"
#define BYELLOW "\033[1;33m"
Expand All @@ -18,3 +19,4 @@
#define WHITE "\033[0;37m"
/* OTHER */
#define RESET "\033[0;m"
#define BITAL "\033[1;3m"
16 changes: 8 additions & 8 deletions src/fetch.c
Original file line number Diff line number Diff line change
Expand Up @@ -394,14 +394,14 @@ void *os()
info.getPkgCount =
"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.col4 = BGREEN " | | / \\ | |";
info.col5 = BGREEN " | | \\___/ | |";
info.col6 = BGREEN " | \\______ \\_|";
info.col7 = BGREEN " -_______\\ ";
info.col8 = "";
info.col1 = BGREEN " _____\n";
info.col2 = BGREEN " _ \\____ -";
info.col3 = BGREEN " / / ____ \\ \\";
info.col4 = BGREEN " / / / \\ \\ \\";
info.col5 = BGREEN " | | " BGRAY BITAL "VOID " BGREEN "| |";
info.col6 = BGREEN " \\ \\ \\____/ / /";
info.col7 = BGREEN " \\ \\____ /_/";
info.col8 = BGREEN " -_____\\\n";
info.getPkgCount = "xbps-query -l | wc -l";
}

Expand Down

0 comments on commit 5aa7009

Please sign in to comment.