Files
fastfetch/src/detection/wmtheme/wmtheme_nosupport.c
T

10 lines
228 B
C

#include "fastfetch.h"
#include "wmtheme.h"
bool ffDetectWmTheme(FFinstance* instance, FFstrbuf* themeOrError)
{
FF_UNUSED(instance);
ffStrbufAppendS(themeOrError, "Not supported on this platform");
return false;
}