awesome-wm-widgets/net-speed-widget
2021-06-06 02:42:05 +01:00
..
icons [net-speed-widget] init commit 2020-07-20 22:30:41 -04:00
net-speed.lua net-speed-widget: fix race condition when using multiple monitors/widgets 2021-06-06 02:42:05 +01:00
README.md Update README.md 2021-04-13 14:22:09 -07:00

Net Speed Widget

The widget and readme is in progress

Installation

Please refer to the installation section of the repo.

Clone repo, include widget and use it in rc.lua:

local net_speed_widget = require("awesome-wm-widgets.net-speed-widget.net-speed")
...
s.mytasklist, -- Middle widget
	{ -- Right widgets
    	layout = wibox.layout.fixed.horizontal,
		...
		net_speed_widget(),
    		...
	}
	...