awesome-wm-widgets/cpu-widget
streetturtle 94252c405a use gradient over cpu-widget, from main color to red 2019-03-18 20:27:08 -04:00
..
README.md Fix `require` line in installation instructions. 2018-12-07 17:00:22 -08:00
cpu-widget.lua use gradient over cpu-widget, from main color to red 2019-03-18 20:27:08 -04:00
out.gif cpu screenshot 2017-09-27 19:47:04 -04:00

README.md

CPU widget

This widget shows the average CPU load among all cores of the machine:

screenshot

When the load is more than 80% the graph becomes red. You can easily customize the widget by changing colors, step width, step spacing, width and interval.

How it works

To measure the load I took Paul Colby's bash script and rewrote it in Lua, which was quite simple. So awesome simply reads the first line of /proc/stat:

$ cat /proc/stat | grep '^cpu '
cpu  197294 718 50102 2002182 3844 0 2724 0 0 0

and calculates the percentage.

Installation

Clone/download repo and use widget in rc.lua:

local cpu_widget = require("awesome-wm-widgets.cpu-widget.cpu-widget")
...
s.mytasklist, -- Middle widget
	{ -- Right widgets
    	layout = wibox.layout.fixed.horizontal,
		...
		cpu_widget,
		...