diff --git a/commands/utility/stats.js b/commands/utility/stats.js
index 23799b56..dc34d9c9 100644
--- a/commands/utility/stats.js
+++ b/commands/utility/stats.js
@@ -43,7 +43,7 @@ class StatsCommand extends Command {
 			const { stdout } = await exec('sysctl -n machdep.cpu.brand_string');
 			cpu = stdout;
 		} 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;
 		} else if (process.platform == 'win32') {
 			const { stdout } = await exec('wmic CPU get NAME');