forked from nakidai/mycfetch
19 lines
419 B
C
19 lines
419 B
C
|
/*
|
||
|
* Printf needed info
|
||
|
* Don't include here any libraries
|
||
|
*/
|
||
|
|
||
|
// Gentoo
|
||
|
|
||
|
// printf(" /‾\\ %s\n", GetCurrentUser());
|
||
|
// printf("( o \\\n");
|
||
|
// printf("/ / %s\n", GetKernelVer());
|
||
|
// printf("\\__/ %s\n", GetUptime());
|
||
|
|
||
|
// Arch
|
||
|
|
||
|
printf(" /\\ %s\n", GetCurrentUser());
|
||
|
printf(" /\\ \\\n");
|
||
|
printf(" / \\ %s\n", GetKernelVer());
|
||
|
printf("/__/\\__\\ %s\n", GetUptime());
|