summaryrefslogtreecommitdiffstats
path: root/DiskIOMeter.c
diff options
context:
space:
mode:
authorChristian Göttsche <cgzones@googlemail.com>2020-10-16 19:44:53 +0200
committercgzones <cgzones@googlemail.com>2020-10-16 20:00:14 +0200
commita8029612862e6ef6ab55b2f7adc2c8b4ac554cee (patch)
treec0bffa74cd0415ca105d854b0f1a084dda014606 /DiskIOMeter.c
parente9246abff8010ec9a9624f004364a3851b6daad3 (diff)
Generalize Meter value colors for IO
Diffstat (limited to 'DiskIOMeter.c')
-rw-r--r--DiskIOMeter.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/DiskIOMeter.c b/DiskIOMeter.c
index 6baca32c..8393af70 100644
--- a/DiskIOMeter.c
+++ b/DiskIOMeter.c
@@ -14,9 +14,9 @@ in the source distribution for its full text.
static const int DiskIOMeter_attributes[] = {
- DISKIO_UTIL_HIGH,
- DISKIO_READ,
- DISKIO_WRITE,
+ METER_VALUE_NOTICE,
+ METER_VALUE_IOREAD,
+ METER_VALUE_IOWRITE,
};
static unsigned long int cached_read_diff = 0;
@@ -62,17 +62,17 @@ static void DiskIOMeter_updateValues(Meter* this, char* buffer, int len) {
static void DIskIOMeter_display(ATTR_UNUSED const Object* cast, RichString* out) {
char buffer[16];
- int color = cached_utilisation_diff > 40.0 ? DISKIO_UTIL_HIGH : METER_VALUE;
+ int color = cached_utilisation_diff > 40.0 ? METER_VALUE_NOTICE : METER_VALUE;
xSnprintf(buffer, sizeof(buffer), "%.1f%%", cached_utilisation_diff);
RichString_write(out, CRT_colors[color], buffer);
RichString_append(out, CRT_colors[METER_TEXT], " read: ");
Meter_humanUnit(buffer, cached_read_diff, sizeof(buffer));
- RichString_append(out, CRT_colors[DISKIO_READ], buffer);
+ RichString_append(out, CRT_colors[METER_VALUE_IOREAD], buffer);
RichString_append(out, CRT_colors[METER_TEXT], " write: ");
Meter_humanUnit(buffer, cached_write_diff, sizeof(buffer));
- RichString_append(out, CRT_colors[DISKIO_WRITE], buffer);
+ RichString_append(out, CRT_colors[METER_VALUE_IOWRITE], buffer);
}
const MeterClass DiskIOMeter_class = {

© 2014-2024 Faster IT GmbH | imprint | privacy policy