1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2024-09-30 05:59:07 +00:00

Fix $memgraph (i think)

This commit is contained in:
Pavel Labath 2009-12-01 14:17:49 +01:00
parent e24bc153b3
commit 24ebff6a62

View File

@ -515,7 +515,7 @@ uint8_t mem_barval(struct text_object *obj)
{
(void)obj;
return round_to_int(info.memmax ? (info.mem * 255 / info.memmax) : 0);
return round_to_int(info.memmax ? (info.mem * 100 / info.memmax) : 0);
}
uint8_t swap_percentage(struct text_object *obj)