mirror of
https://github.com/fastfetch-cli/fastfetch.git
synced 2026-09-13 10:52:08 +02:00
16 lines
331 B
C
16 lines
331 B
C
#pragma once
|
|
|
|
// This file will be included in "fastfetch.h", do NOT put unnecessary things here
|
|
|
|
#include "common/option.h"
|
|
#include "common/percent.h"
|
|
|
|
typedef struct FFBluetoothOptions
|
|
{
|
|
FFModuleBaseInfo moduleInfo;
|
|
FFModuleArgs moduleArgs;
|
|
|
|
bool showDisconnected;
|
|
FFPercentConfig percent;
|
|
} FFBluetoothOptions;
|