commit ffad8c4df856f4e7a681f40b9086d4ad683b300e
parent 16f9c67d5f4c545828468c66ffea5a6ccff19a67
Author: sam-barr <samfbarr@outlook.com>
Date: Thu, 23 Apr 2020 09:43:35 -0500
Merge pull request #22 from allisio/master
Fully paint the logo
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/paleofetch.c b/paleofetch.c
@@ -534,7 +534,7 @@ int main(int argc, char *argv[]) {
for (int i = 0; i < COUNT(LOGO); i++) {
// If we've run out of information to show...
if(i >= COUNT(config) - offset) // just print the next line of the logo
- puts(LOGO[i]);
+ printf(COLOR"%s\n", LOGO[i]);
else {
// Otherwise, we've got a bit of work to do.
char *label = config[i+offset].label,