Update README.md

Fix for Multiscreen Bug
Issue:https://github.com/streetturtle/awesome-wm-widgets/issues/197
This commit is contained in:
Tert0 2020-12-29 15:44:41 +01:00 committed by GitHub
parent eb742ed9d4
commit d23448a07e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -23,11 +23,12 @@ It is possible to customize widget by providing a table with all or some of the
```lua
local volume_widget = require("awesome-wm-widgets.volume-widget.volume")
local volume_widget_widget = volume_widget({display_notification = true})
...
s.mytasklist, -- Middle widget
{ -- Right widgets
...
volume_widget({display_notification = true}),
volume_widget_widget,
...
```