awesome-wm-widgets/net-speed-widget/README.md

21 lines
452 B
Markdown
Raw Normal View History

2020-07-21 04:30:41 +02:00
# Net Speed Widget
## Installation
Please refer to the [installation](https://github.com/streetturtle/awesome-wm-widgets#installation) section of the repo.
Clone repo, include widget and use it in **rc.lua**:
```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(),
2021-04-13 23:19:08 +02:00
...
}
...
```