mirror of
https://github.com/fastfetch-cli/fastfetch.git
synced 2026-09-13 10:24:58 +02:00
11 lines
279 B
C
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;
|
|
}
|