Skip to content

Commit a7f8815

Browse files
committed
OS (Linux): detect Lilidog
1 parent 91fdc81 commit a7f8815

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

src/detection/os/os_linux.c

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -179,6 +179,13 @@ static bool detectDebianDerived(FFOSResult* result)
179179
ffStrbufSetS(&result->idLike, "debian");
180180
return true;
181181
}
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+
}
182189
else if (access("/usr/bin/pveversion", X_OK) == 0)
183190
{
184191
ffStrbufSetS(&result->id, "pve");

0 commit comments

Comments
 (0)