Files
fastfetch/src/modules/cpu/option.h
T
2025-12-11 09:52:50 +08:00

16 lines
329 B
C

#pragma once
#include "common/option.h"
typedef struct FFCPUOptions
{
FFModuleArgs moduleArgs;
FFstrbuf tempSensor;
bool temp;
FFColorRangeConfig tempConfig;
bool showPeCoreCount;
} FFCPUOptions;
static_assert(sizeof(FFCPUOptions) <= FF_OPTION_MAX_SIZE, "FFCPUOptions size exceeds maximum allowed size");