mirror of
https://github.com/fastfetch-cli/fastfetch.git
synced 2026-09-13 02:42:09 +02:00
13 lines
279 B
C
13 lines
279 B
C
#pragma once
|
|
|
|
#include "fastfetch.h"
|
|
#include "util/FFlist.h"
|
|
|
|
typedef struct FFBrightnessResult
|
|
{
|
|
FFstrbuf name;
|
|
double min, max, current;
|
|
} FFBrightnessResult;
|
|
|
|
const char* ffDetectBrightness(FFBrightnessOptions* options, FFlist* result); // list of FFBrightnessResult
|