mirror of
https://github.com/nicolargo/glances.git
synced 2024-12-21 08:11:39 +03:00
Quick Look missing CPU Infos #1685
This commit is contained in:
parent
fc7ed91761
commit
b2f499fed4
@ -2,7 +2,7 @@
|
|||||||
#
|
#
|
||||||
# This file is part of Glances.
|
# This file is part of Glances.
|
||||||
#
|
#
|
||||||
# Copyright (C) 2019 Nicolargo <nicolas@nicolargo.com>
|
# Copyright (C) 2020 Nicolargo <nicolas@nicolargo.com>
|
||||||
#
|
#
|
||||||
# Glances is free software; you can redistribute it and/or modify
|
# Glances is free software; you can redistribute it and/or modify
|
||||||
# it under the terms of the GNU Lesser General Public License as published by
|
# it under the terms of the GNU Lesser General Public License as published by
|
||||||
@ -14,8 +14,8 @@
|
|||||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
# GNU Lesser General Public License for more details.
|
# GNU Lesser General Public License for more details.
|
||||||
#
|
#
|
||||||
# You should have received a copy of the GNU Lesser General Public License
|
|
||||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
# You should have received a copy of the GNU Lesser General Public License
|
||||||
|
|
||||||
"""Quicklook plugin."""
|
"""Quicklook plugin."""
|
||||||
|
|
||||||
@ -92,6 +92,10 @@ class Plugin(GlancesPlugin):
|
|||||||
cpu_info = cpuinfo.get_cpu_info()
|
cpu_info = cpuinfo.get_cpu_info()
|
||||||
# Check cpu_info (issue #881)
|
# Check cpu_info (issue #881)
|
||||||
if cpu_info is not None:
|
if cpu_info is not None:
|
||||||
|
# Use brand_raw if the key exist (issue #1685)
|
||||||
|
if cpu_info.get('brand_raw') is not None:
|
||||||
|
stats['cpu_name'] = cpu_info.get('brand_raw', 'CPU')
|
||||||
|
else:
|
||||||
stats['cpu_name'] = cpu_info.get('brand', 'CPU')
|
stats['cpu_name'] = cpu_info.get('brand', 'CPU')
|
||||||
if 'hz_actual_raw' in cpu_info:
|
if 'hz_actual_raw' in cpu_info:
|
||||||
stats['cpu_hz_current'] = cpu_info['hz_actual_raw'][0]
|
stats['cpu_hz_current'] = cpu_info['hz_actual_raw'][0]
|
||||||
|
Loading…
Reference in New Issue
Block a user