added parabola logo and updated example.h

This commit is contained in:
Palanix 2021-06-16 19:52:43 +02:00
parent c89aaf7fbe
commit 1e1b409495
2 changed files with 31 additions and 0 deletions

View file

@ -5,6 +5,7 @@
#define NAMECOLOR COLOR
//this is only needed when the name is supposed to be in a different color, like with kiss linux
#define ROWS 19
//ALWAYS, and I mean ALWAYS exclude the last line of the logo, see the end of the file for more info
char *logo[] = {
"....",

30
logos/parabola.h Normal file
View file

@ -0,0 +1,30 @@
// this file is only an example as to how to make a logo file
#include "../color.h"
// this is only needed when using multi color logos
#define COLOR MAGENTA
#define NAMECOLOR COLOR
//this is only needed when the name is supposed to be in a different color, like with kiss linux
#define ROWS 16
char *logo[] = {
" `.-. `. ",
" `.` `:++. `-+o+.",
" `` `:+/. `:+/. `-+oooo+",
" ``-::-.:+/. `:+/. `-+oooooo+",
" `.-:///- ..` .-. `-+oooooooo-",
" `..-..` `+ooooooooo: ",
"`` :oooooooo/ ",
" `ooooooo: ",
" `oooooo: ",
" -oooo+. ",
" +ooo/` ",
" -ooo- ",
" `+o/. ",
" /+- ",
" //` ",
" -. ",
" ",
};
//IMPORTANT: Always make the lines the same length. There shouldn't be any extra spaces, as they are added later on by the programm itself
//IMPORTANT: the last line should be only spaces with the same length as the other lines, ROWS should exclude the last line