diff options
Diffstat (limited to 'src/detection/gtk_qt/gtk_qt.h')
| -rw-r--r-- | src/detection/gtk_qt/gtk_qt.h | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/src/detection/gtk_qt/gtk_qt.h b/src/detection/gtk_qt/gtk_qt.h new file mode 100644 index 0000000..b831bb6 --- /dev/null +++ b/src/detection/gtk_qt/gtk_qt.h @@ -0,0 +1,25 @@ +#pragma once + +#include "fastfetch.h" + +typedef struct FFGTKResult { + FFstrbuf theme; + FFstrbuf icons; + FFstrbuf font; + FFstrbuf cursor; + FFstrbuf cursorSize; + FFstrbuf wallpaper; +} FFGTKResult; + +typedef struct FFQtResult { + FFstrbuf widgetStyle; + FFstrbuf colorScheme; + FFstrbuf icons; + FFstrbuf font; + FFstrbuf wallpaper; +} FFQtResult; + +const FFGTKResult* ffDetectGTK2(void); +const FFGTKResult* ffDetectGTK4(void); +const FFGTKResult* ffDetectGTK3(void); +const FFQtResult* ffDetectQt(void); |