xbattmon

simple battery monitor for X
git clone git://git.2f30.org/xbattmon
Log | Files | Refs | README | LICENSE

commit 8920fa33f05bc5dc8dd4aa7efcc472f1c1598dc1
parent d968c37aee05dcdb4a2f51d43205716975c2d68c
Author: sin <sin@2f30.org>
Date:   Thu, 30 Oct 2014 23:02:24 +0000

Rename max to maxcap

Diffstat:
Mxbattmon.c | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/xbattmon.c b/xbattmon.c @@ -63,7 +63,7 @@ int howmuch; /* 0 if completely discharged or 100 if completely charged */ unsigned int thickness = 4; /* 4 pixels by default */ time_t pollinterval = 5; /* poll battery state every 5 seconds */ int bottom = 1; /* set to 0 if you want the bar to be at the top */ -int max = 100; /* maximum battery capacity */ +int maxcap = 100; /* maximum battery capacity */ void setup(void) @@ -121,7 +121,7 @@ redraw(void) { int pos; - pos = barwidth * howmuch / max; + pos = barwidth * howmuch / maxcap; switch (state) { case BATT_CHARGING: XSetForeground(dpy, gcbar, colmap[COLOR_BATT_CHARGED].pixel);