Files
fastfetch/src/modules/cpuusage/option.h
T

16 lines
324 B
C
Raw Normal View History

2023-03-17 17:56:31 +08:00
#pragma once
// This file will be included in "fastfetch.h", do NOT put unnecessary things here
#include "common/option.h"
#include "common/percent.h"
2023-03-17 17:56:31 +08:00
typedef struct FFCPUUsageOptions
{
2023-08-17 10:56:54 +08:00
FFModuleBaseInfo moduleInfo;
2023-03-17 17:56:31 +08:00
FFModuleArgs moduleArgs;
2023-10-10 16:00:23 +08:00
bool separate;
FFColorRangeConfig percent;
2023-03-17 17:56:31 +08:00
} FFCPUUsageOptions;