forked from nakidai/mycfetch
1
0
Fork 0
hiscfetch/config.h

45 lines
982 B
C
Raw Normal View History

2023-11-15 20:56:56 +03:00
#include "defs.h"
static const int max_username_length = 128;
static const int max_hostname_length = 128;
static const int max_uptime_length = 40;
2023-11-12 14:54:45 +03:00
static struct art_entry arts[] = {
2023-11-15 20:56:56 +03:00
{
"cat",
{
" |、 ",
"(˚ˎ。7 ",
"| 、˜〵 ",
"じしˍ,)"
}
},
{
"freebsd",
{
"\033[31m_ _\033[0m",
"\033[31m\\‾‾‾‾/\033[0m",
"\033[31m|^vv^|\033[0m",
"\033[31m\\____/\033[0m"
}
},
{
"gentoo",
{
2024-02-19 18:24:33 +03:00
"\033[35m /‾\\ \033[0m",
"\033[35m( \033[37mo \033[35m\\\033[0m",
"\033[35m/ /\033[0m",
"\033[35m\\__/ \033[0m"
2023-11-15 20:56:56 +03:00
}
},
{
"arch",
{
2024-02-19 18:45:21 +03:00
"\033[34m /\\ \033[0m",
2024-02-19 18:24:33 +03:00
"\033[34m /\\ \\ \033[0m",
2024-02-19 18:45:21 +03:00
"\033[34m / \\ \033[0m",
2024-02-19 18:24:33 +03:00
"\033[34m/__/\\__\\\033[0m"
2023-11-15 20:56:56 +03:00
}
}
2023-11-12 14:54:45 +03:00
};