fastfetch-sys 2.43.0

A neofetch like system information tool
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#include "bootmgr.h"
#include "common/io/io.h"

const char* ffDetectBootmgr(FFBootmgrResult* result)
{
    if (ffPathExists("/System/Library/CoreServices/boot.efi", FF_PATHTYPE_FILE))
        ffStrbufSetStatic(&result->firmware, "/System/Library/CoreServices/boot.efi");

    ffStrbufSetStatic(&result->name, "iBoot");

    return NULL;
}