Update how it shows on linux

This commit is contained in:
Loïc Bersier 2019-07-25 07:52:01 +02:00
parent e300acc0f2
commit cd3bf364cf

View file

@ -43,7 +43,7 @@ class StatsCommand extends Command {
const { stdout } = await exec('sysctl -n machdep.cpu.brand_string'); const { stdout } = await exec('sysctl -n machdep.cpu.brand_string');
cpu = stdout; cpu = stdout;
} else if (process.platform == 'linux') { } else if (process.platform == 'linux') {
const { stdout } = await exec('grep -m 1 \'model name\' /proc/cpuinfo'); const { stdout } = await exec('lscpu | grep "Model name:" | sed -r \'s/Model name:\\s{1,}//g\'');
cpu = stdout; cpu = stdout;
} else if (process.platform == 'win32') { } else if (process.platform == 'win32') {
const { stdout } = await exec('wmic CPU get NAME'); const { stdout } = await exec('wmic CPU get NAME');