1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
|
#include "wallpaper.h"
#include "common/io.h"
#include "common/settings.h"
#include "detection/displayserver/displayserver.h"
#include "detection/gtk_qt/gtk_qt.h"
static const char* detectCosmicComp(FFstrbuf* result) {
FF_STRBUF_AUTO_DESTROY path = ffStrbufCreateCopy(FF_LIST_FIRST(FFstrbuf, instance.state.platform.configDirs));
ffStrbufAppendS(&path, "cosmic/com.system76.CosmicBackground/v1/");
uint32_t basePathLength = path.length;
FF_STRBUF_AUTO_DESTROY backgrounds = ffStrbufCreate();
ffStrbufAppendS(&path, "backgrounds");
bool sharedWallpaper = true;
FF_STRBUF_AUTO_DESTROY monitorName = ffStrbufCreate();
if (ffReadFileBuffer(path.chars, &backgrounds)) {
FF_STRBUF_AUTO_DESTROY cleaned = ffStrbufCreateCopy(&backgrounds);
ffStrbufRemoveStrings(&cleaned, 4, (const char*[]){ " ", "\n", "\r", "\t" });
if (!ffStrbufEqualS(&cleaned, "[]")) {
const char* firstQuote = strchr(backgrounds.chars, '"');
if (firstQuote != NULL) {
const char* secondQuote = strchr(firstQuote + 1, '"');
if (secondQuote != NULL && secondQuote > firstQuote + 1) {
ffStrbufAppendNS(&monitorName, (uint32_t) (secondQuote - firstQuote - 1), firstQuote + 1);
sharedWallpaper = false;
}
}
}
}
ffStrbufSubstrBefore(&path, basePathLength);
if (sharedWallpaper) {
ffStrbufAppendS(&path, "all");
} else {
ffStrbufAppendS(&path, "output.");
ffStrbufAppend(&path, &monitorName);
}
FF_STRBUF_AUTO_DESTROY output = ffStrbufCreate();
if (!ffReadFileBuffer(path.chars, &output)) {
return "Failed to read COSMIC wallpaper config";
}
const char* sourceStart = strstr(output.chars, "source:");
if (sourceStart == NULL) {
return "COSMIC wallpaper config doesn't contain source";
}
const char* pathStart = strstr(sourceStart, "Path(");
if (pathStart == NULL) {
return "COSMIC wallpaper source is not a Path value";
}
pathStart += strlen("Path(");
while (*pathStart == ' ' || *pathStart == '\t') {
++pathStart;
}
if (*pathStart != '\'' && *pathStart != '"') {
return "COSMIC wallpaper Path format is invalid";
}
char quote = *pathStart;
++pathStart;
const char* pathEnd = strchr(pathStart, quote);
if (pathEnd == NULL || pathEnd == pathStart) {
return "COSMIC wallpaper path is empty";
}
ffStrbufAppendNS(result, (uint32_t) (pathEnd - pathStart), pathStart);
return NULL;
}
const char* ffDetectWallpaper(FFstrbuf* result) {
const FFDisplayServerResult* wm = ffConnectDisplayServer();
if (ffStrbufIgnCaseEqualS(&wm->wmPrettyName, FF_WM_PRETTY_COSMIC_COMP)) {
return detectCosmicComp(result);
}
const FFstrbuf* wallpaper = NULL;
const FFGTKResult* gtk = ffDetectGTK4();
if (gtk->wallpaper.length) {
wallpaper = >k->wallpaper;
} else {
const FFQtResult* qt = ffDetectQt();
if (qt->wallpaper.length) {
wallpaper = &qt->wallpaper;
}
}
if (!wallpaper) {
return "Failed to detect the current wallpaper path";
}
if (ffStrbufStartsWithS(wallpaper, "file:///")) {
ffStrbufAppendS(result, wallpaper->chars + strlen("file://"));
} else {
ffStrbufAppend(result, wallpaper);
}
return NULL;
}
|