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

45 lines
820 B
C
Raw Normal View History

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