mirror of
https://github.com/fastfetch-cli/fastfetch.git
synced 2026-09-13 02:42:09 +02:00
15 lines
278 B
C
15 lines
278 B
C
#pragma once
|
|
|
|
#include "fastfetch.h"
|
|
|
|
typedef struct FFBluetoothResult
|
|
{
|
|
FFstrbuf name;
|
|
FFstrbuf address;
|
|
FFstrbuf type;
|
|
uint8_t battery; // 0-100%
|
|
bool connected;
|
|
} FFBluetoothResult;
|
|
|
|
const char* ffDetectBluetooth(FFlist* devices /* FFBluetoothResult */);
|