I have Kubuntu 18.10 with KDE Plasma 5.14.4 on a Lenovo laptop.
Is there a CPU monitor widget showing CPU frequency in GHz?
I would like a live monitoring from a widget in system tray in GHz.
If possible, how to make Psensor showing CPU frequency in GHz or similar?
I want to monitor CPU frequency in GHz from system tray and do not want to monitor CPU usage in percentage like the duplicate.
42 Answers
For CPU usage:
sudo apt install indicator-cpufreq and also try this
sudo apt install indicator-multiload A small script for monitoring frequency.
while true do echo $(lscpu | grep MHz) sleep 1 done 3Use the following command with the Command Output Widget.
lscpu |awk -F : '($1=="CPU MHz") {printf "%3.2fGHz\n", $2/1000}'