From 11931f1bc856ae34de6666423efc9257960506ce Mon Sep 17 00:00:00 2001 From: Hisham Muhammad Date: Tue, 23 Sep 2008 06:21:28 +0000 Subject: ACPI Battery meter contributed by Ian Hands --- Meter.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'Meter.c') diff --git a/Meter.c b/Meter.c index 7ed241d0..eec5ca56 100644 --- a/Meter.c +++ b/Meter.c @@ -96,8 +96,10 @@ typedef enum { #include "TasksMeter.h" #include "LoadAverageMeter.h" #include "UptimeMeter.h" +#include "BatteryMeter.h" #include "ClockMeter.h" + #ifndef MIN #define MIN(a,b) ((a)<(b)?(a):(b)) #endif @@ -120,6 +122,7 @@ MeterType* Meter_types[] = { &SwapMeter, &TasksMeter, &UptimeMeter, + &BatteryMeter, &AllCPUsMeter, NULL }; @@ -242,8 +245,8 @@ static void BarMeterMode_draw(Meter* this, int x, int y, int w) { w -= 2; attrset(CRT_colors[METER_TEXT]); - mvaddstr(y, x, this->caption); - int captionLen = strlen(this->caption); + int captionLen = 3; + mvaddnstr(y, x, this->caption, captionLen); x += captionLen; w -= captionLen; attrset(CRT_colors[BAR_BORDER]); -- cgit v1.2.3