diff options
author | streetturtle <streetturtle@users.noreply.github.com> | 2021-04-21 10:46:44 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-21 10:46:44 -0400 |
commit | 323e032c3b59bea7654849071ef074289213a49b (patch) | |
tree | 8b8277d0c48480f31f328186b4708ee12b2a3bf2 /ram-widget/README.md | |
parent | 270665bca361a00fff746be6031d36b17b357aec (diff) | |
parent | afa1c1af4984f2674b0e7ab421f082057db7f3ab (diff) |
Merge pull request #252 from arjunadeltoso/patch-1
Some more READMEs installation instructions
Diffstat (limited to 'ram-widget/README.md')
-rw-r--r-- | ram-widget/README.md | 18 |
1 files changed, 17 insertions, 1 deletions
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(), + ... + } + ... +``` + |