summaryrefslogtreecommitdiff
path: root/ram-widget
diff options
context:
space:
mode:
authorAndrew Slice <edward.andrew.slice@gmail.com>2022-04-11 17:26:01 -0400
committerAndrew Slice <edward.andrew.slice@gmail.com>2022-04-11 17:26:01 -0400
commitfbe207a0f9110dc3a686cb85d9f2bea19bc0aef3 (patch)
tree70294c84f4c3b4cdbaa9a27ccc1bec0bad5b1861 /ram-widget
parentb8e3a861f4829b2c3820e9a40294a3d9125fbf23 (diff)
Add notification_position parameters to batteryarc-widget.
Add widget_height and widget_width parameters to ram-widget.
Diffstat (limited to 'ram-widget')
-rw-r--r--ram-widget/README.md2
-rw-r--r--ram-widget/ram-widget.lua5
2 files changed, 6 insertions, 1 deletions
diff --git a/ram-widget/README.md b/ram-widget/README.md
index 6e80976..568245b 100644
--- a/ram-widget/README.md
+++ b/ram-widget/README.md
@@ -15,6 +15,8 @@ It is possible to customize widget by providing a table with all or some of the
| `color_used` | `beautiful.bg_urgent` | Color for used RAM |
| `color_free` | `beautiful.fg_normal` | Color for free RAM |
| `color_buf` | `beautiful.border_color_active` | Color for buffers/cache |
+| `widget_height` | `25` | Height of the widget |
+| `widget_width` | `25` | Width of the widget |
| `widget_show_buf` | `false` | Whether to display buffers/cache separately in the tray widget. If `false`, buffers/cache are considered free RAM. |
| `timeout` | 1 | How often (in seconds) the widget refreshes |
diff --git a/ram-widget/ram-widget.lua b/ram-widget/ram-widget.lua
index 1b5cdcf..867d28e 100644
--- a/ram-widget/ram-widget.lua
+++ b/ram-widget/ram-widget.lua
@@ -15,6 +15,8 @@ local function worker(user_args)
local color_free = args.color_free or beautiful.fg_normal
local color_buf = args.color_buf or beautiful.border_color_active
local widget_show_buf = args.widget_show_buf or false
+ local widget_height = args.widget_height or 25
+ local widget_width = args.widget_width or 25
--- Main ram widget shown on wibar
ramgraph_widget = wibox.widget {
@@ -25,7 +27,8 @@ local function worker(user_args)
color_buf,
},
display_labels = false,
- forced_width = 25,
+ forced_height = widget_height,
+ forced_width = widget_width,
widget = wibox.widget.piechart
}