awesome-wm-widgets/_widgets/ram-widget.md

45 lines
1.4 KiB
Markdown
Raw Normal View History

2018-09-15 23:33:42 +02:00
---
layout: page
---
# Ram widget
This widget shows the RAM usage. When clicked another widget appears with more detailed information:
2022-01-24 03:05:55 +01:00
![screenshot](../awesome-wm-widgets/assets/img/widgets/screenshots/ram-widget/out.gif)
2022-01-24 01:17:02 +01:00
Note: this widget is compatible with Awesome v4.3+, as it is using [awful.popup](https://awesomewm.org/doc/api/classes/awful.popup.html)
2018-09-15 23:33:42 +02:00
2021-04-13 03:39:49 +02:00
## Customization
It is possible to customize widget by providing a table with all or some of the following config parameters:
| Name | Default | Description |
|---|---|---|
| `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 |
2022-04-15 23:19:56 +02:00
| `widget_height` | `25` | Height of the widget |
| `widget_width` | `25` | Width of the widget |
2021-04-13 03:39:49 +02:00
| `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 |
2018-09-15 23:33:42 +02:00
## Installation
2022-01-24 01:17:02 +01:00
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(),
...
}
...
```