summaryrefslogtreecommitdiffstats
path: root/src/detection/gtk_qt/gtk_qt.h
diff options
context:
space:
mode:
authorsumuel <samuel@yakubos.org>2026-08-17 20:44:55 +0000
committersumuel <samuel@yakubos.org>2026-08-17 20:44:55 +0000
commit76424950e373d3b04ac3dd13019151bfba3e8423 (patch)
tree4c3cfdbda039e592b9186be3e28f8d7cfd439e8a /src/detection/gtk_qt/gtk_qt.h
Add the files
Diffstat (limited to 'src/detection/gtk_qt/gtk_qt.h')
-rw-r--r--src/detection/gtk_qt/gtk_qt.h25
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);