diff options
-rw-r--r-- | net-speed-widget/README.md | 21 | ||||
-rw-r--r-- | ram-widget/README.md | 18 |
2 files changed, 37 insertions, 2 deletions
diff --git a/net-speed-widget/README.md b/net-speed-widget/README.md index 1cac674..a09893e 100644 --- a/net-speed-widget/README.md +++ b/net-speed-widget/README.md @@ -1,3 +1,22 @@ # Net Speed Widget -The widget and readme is in progress
\ No newline at end of file +The widget and readme is in progress + +## 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(), + ... + } + ... +``` diff --git a/ram-widget/README.md b/ram-widget/README.md index 8f8eee4..dcbf9ab 100644 --- a/ram-widget/README.md +++ b/ram-widget/README.md @@ -18,4 +18,20 @@ It is possible to customize widget by providing a table with all or some of the ## Installation -Please refer to the [installation](https://github.com/streetturtle/awesome-wm-widgets#installation) section of the repo.
\ No newline at end of file +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 ram_widget = require("awesome-wm-widgets.ram-widget.ram-widget") +... +s.mytasklist, -- Middle widget + { -- Right widgets + layout = wibox.layout.fixed.horizontal, + ... + ram_widget(), + ... + } + ... +``` + |