diff options
| author | streetturtle <streetturtle@users.noreply.github.com> | 2021-04-21 10:47:34 -0400 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-04-21 10:47:34 -0400 | 
| commit | 24ec325363f7885183a0e9838536e9775b0d6bcd (patch) | |
| tree | 0193fd7d5c9cc1a96596ac134a515dbd575f18ea | |
| parent | 323e032c3b59bea7654849071ef074289213a49b (diff) | |
| parent | 2d13d012031ba82f3c8b0f9e4f1e950338522567 (diff) | |
Merge pull request #253 from nuno-silva/fixes
minor fixes
| -rw-r--r-- | calendar-widget/README.md | 4 | ||||
| -rw-r--r-- | volume-widget/README.md | 4 | 
2 files changed, 4 insertions, 4 deletions
diff --git a/calendar-widget/README.md b/calendar-widget/README.md index 77b8fe7..3d878bf 100644 --- a/calendar-widget/README.md +++ b/calendar-widget/README.md @@ -45,8 +45,8 @@ local cw = calendar_widget()  -- or customized  local cw = calendar_widget({      theme = 'outrun', -    placement = 'bottom_right' -    radius = 8 +    placement = 'bottom_right', +    radius = 8,  })  mytextclock:connect_signal("button::press",       function(_, _, _, button) diff --git a/volume-widget/README.md b/volume-widget/README.md index d08b795..52e1704 100644 --- a/volume-widget/README.md +++ b/volume-widget/README.md @@ -30,7 +30,7 @@ s.mytasklist, -- Middle widget          volume_widget(),          -- customized          volume_widget{ -            type = 'arc' +            widget_type = 'arc'          },  ``` @@ -52,7 +52,7 @@ It is possible to customize the widget by providing a table with all or some of  | Name | Default | Description |  |---|---|---| -| `type`| `icon_and_text`| Widget type, one of `horizontal_bar`, `vertical_bar`, `icon`, `icon_and_text`, `arc` |  +| `widget_type`| `icon_and_text`| Widget type, one of `horizontal_bar`, `vertical_bar`, `icon`, `icon_and_text`, `arc` |  Depending on the chosen widget type add parameters from the corresponding section below:  | 
