2013-09-07 14:34:12 +02:00
|
|
|
[<- widgets](https://github.com/copycat-killer/lain/wiki/Widgets)
|
|
|
|
|
2013-09-07 14:08:42 +02:00
|
|
|
Shows memory status (in MiB) in a textbox.
|
2013-09-07 12:11:44 +02:00
|
|
|
|
|
|
|
mymem = lain.widgets.mem()
|
|
|
|
|
|
|
|
|
|
|
|
The function takes a table as an optional argument. That table may
|
|
|
|
contain:
|
|
|
|
|
|
|
|
Variable | Meaning | Type | Default
|
|
|
|
--- | --- | --- | ---
|
|
|
|
`refresh_timeout` | Refresh timeout seconds | int | 10
|
|
|
|
`show_swap` | Show amount of used swap space? | boolean | false
|
|
|
|
`show_total` | Show amout of total memory? | boolean | false
|
2013-09-08 18:55:18 +02:00
|
|
|
`header` | Text to show before value | string | " Mem "
|
2013-09-07 12:11:44 +02:00
|
|
|
`header_color` | Header color | string | `beautiful.fg_normal` or "#FFFFFF"
|
|
|
|
`color` | Value color | string | `beautiful.fg_focus` or "#FFFFFF"
|
2013-09-08 18:55:18 +02:00
|
|
|
`footer` | Text to show after value | string | "MB "
|
2013-09-07 12:11:44 +02:00
|
|
|
|
|
|
|
**Note**: `footer` color is `color`.
|