Files
fastfetch/src/modules/custom.c
T

10 lines
252 B
C
Raw Normal View History

2021-02-27 19:22:28 +01:00
#include "fastfetch.h"
#include "common/printing.h"
2021-02-27 19:22:28 +01:00
void ffPrintCustom(FFinstance* instance, const char* key, const char* value)
{
2021-04-15 18:59:26 +02:00
ffPrintLogoAndKey(instance, key, 0, NULL);
2022-08-18 11:36:30 +02:00
ffPrintUserString(value);
2022-08-18 11:45:44 +02:00
puts(FASTFETCH_TEXT_MODIFIER_RESET);
2021-03-27 18:14:19 +01:00
}