mirror of
https://github.com/fastfetch-cli/fastfetch.git
synced 2026-09-13 02:42:09 +02:00
16 lines
329 B
C
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");
|