We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 91fdc81 commit a7f8815Copy full SHA for a7f8815
src/detection/os/os_linux.c
@@ -179,6 +179,13 @@ static bool detectDebianDerived(FFOSResult* result)
179
ffStrbufSetS(&result->idLike, "debian");
180
return true;
181
}
182
+ else if (ffStrbufStartsWith(&result->name, "Lilidog GNU/Linux"))
183
+ {
184
+ // https://github.com/fastfetch-cli/fastfetch/issues/1373
185
+ ffStrbufSetS(&result->id, "lilidog");
186
+ ffStrbufSetS(&result->idLike, "debian");
187
+ return true;
188
+ }
189
else if (access("/usr/bin/pveversion", X_OK) == 0)
190
{
191
ffStrbufSetS(&result->id, "pve");
0 commit comments