Files
fastfetch/src/modules/custom.c
T

8 lines
169 B
C
Raw Normal View History

2021-02-27 19:22:28 +01:00
#include "fastfetch.h"
void ffPrintCustom(FFinstance* instance, const char* key, const char* value)
{
2021-04-15 18:59:26 +02:00
ffPrintLogoAndKey(instance, key, 0, NULL);
2021-02-27 19:22:28 +01:00
puts(value);
2021-03-27 18:14:19 +01:00
}