diff --git a/CHANGELOG.md b/CHANGELOG.md index 0feb52d..8bfdd78 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -30,7 +30,7 @@ For major (breaking) changes - version 3 and 2 see end of page. | Version | Date | Comment | | -------------- | -------------- | -------- | -| 4.10.0 | 2019-06-14 | `graphics()` windows multiple display support | +| 4.10.0 | 2019-06-14 | `graphics()` windows multiple display support | | 4.9.2 | 2019-06-12 | type definitions bug fix | | 4.9.1 | 2019-06-11 | `networkStats()` bug fix windows | | 4.9.0 | 2019-06-03 | `graphics()` added vendor, refresh rate, current res | diff --git a/lib/osinfo.js b/lib/osinfo.js index b602e9f..366a7c3 100644 --- a/lib/osinfo.js +++ b/lib/osinfo.js @@ -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'; }