added MX linux detection

This commit is contained in:
Sebastian Hildebrandt 2019-06-14 17:35:47 +02:00
parent a4b888ca86
commit d29686ed7f
2 changed files with 4 additions and 1 deletions

View File

@ -95,6 +95,9 @@ function getLogoFile(distro) {
else if (distro.indexOf('mint') !== -1) {
result = 'mint';
}
else if (distro.indexOf('mx') !== -1) {
result = 'mx';
}
else if (distro.indexOf('openbsd') !== -1) {
result = 'openbsd';
}