Files
fastfetch/src/detection/wmtheme/wmtheme_nosupport.c
T
2022-10-09 23:23:46 +08:00

11 lines
279 B
C

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