mirror of
https://github.com/fastfetch-cli/fastfetch.git
synced 2026-09-13 02:42:09 +02:00
ce43f06863
Fix #1110
25 lines
681 B
C
25 lines
681 B
C
#pragma once
|
|
|
|
#ifndef FASTFETCH_INCLUDED_DISPLAYSERVER
|
|
#define FASTFETCH_INCLUDED_DISPLAYSERVER
|
|
|
|
#include "detection/displayserver/displayserver.h"
|
|
|
|
bool ffdsMatchDrmConnector(const char* connName, FFstrbuf* edidName);
|
|
|
|
const char* ffdsConnectWayland(FFDisplayServerResult* result);
|
|
|
|
void ffdsConnectXcbRandr(FFDisplayServerResult* result);
|
|
void ffdsConnectXcb(FFDisplayServerResult* result);
|
|
|
|
void ffdsConnectXrandr(FFDisplayServerResult* result);
|
|
void ffdsConnectXlib(FFDisplayServerResult* result);
|
|
|
|
void ffdsConnectDrm(FFDisplayServerResult* result);
|
|
|
|
void ffdsDetectWMDE(FFDisplayServerResult* result);
|
|
|
|
FFDisplayType ffdsGetDisplayType(const char* drmConnectorName);
|
|
|
|
#endif
|