We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 805aee5 + 058cbaf commit f97f5e7Copy full SHA for f97f5e7
library/stats.py
@@ -355,6 +355,13 @@ def stats():
355
unit=" M"
356
)
357
358
+ display_themed_value(
359
+ theme_data=memory_stats_theme_data['VIRTUAL']['TOTAL'],
360
+ value=int((sensors.Memory.virtual_free() + sensors.Memory.virtual_used()) / 1000000),
361
+ min_size=5,
362
+ unit=" M"
363
+ )
364
+
365
366
class Disk:
367
@staticmethod
res/themes/default.yaml
@@ -68,6 +68,9 @@ STATS:
68
FREE:
69
SHOW: False
70
SHOW_UNIT: False
71
+ TOTAL:
72
+ SHOW: False
73
+ SHOW_UNIT: False
74
PERCENT_TEXT:
75
76
0 commit comments