awesome-wm-widgets/net-speed-widget
Nuno Silva 2717d15af5 fix SI prefixes
- lower 'm' is milli, not mega
- lower 'g' is unassigned
- 'G' is 10^9, 'Gi' is 2^30

see https://en.wikipedia.org/wiki/Metric_prefix
2023-11-18 17:08:39 +00:00
..
icons [net-speed-widget] init commit 2020-07-20 22:30:41 -04:00
README.md Update README.md 2021-04-13 14:22:09 -07:00
net-speed.lua fix SI prefixes 2023-11-18 17:08:39 +00:00

README.md

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(),
    		...
	}
	...