all repos — slstatus @ aa8654795da19a8d517faf1b84cd4dc4ac75f6e7

my build of slstatus (tools.suckless.org/slstatus/)

battery_remaining: check for division by zero
Aaron Marcher me@drkhsh.at
Mon, 21 May 2018 00:42:06 +0200
commit

aa8654795da19a8d517faf1b84cd4dc4ac75f6e7

parent

a546d4b585234f66b82e048c2d7cb228b9e7fea4

1 files changed, 4 insertions(+), 0 deletions(-)

jump to
M components/battery.ccomponents/battery.c

@@ -107,6 +107,10 @@ pscanf(path, "%d", &current_now) < 0) {

return NULL; } + if (current_now == 0) { + return NULL; + } + timeleft = (double)charge_now / (double)current_now; h = timeleft; m = (timeleft - (double)h) * 60;