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.

4

2 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 
3

Use the following command with the Command Output Widget.

lscpu |awk -F : '($1=="CPU MHz") {printf "%3.2fGHz\n", $2/1000}' 

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy