]> git.madduck.net Git - etc/awesome.git/commitdiff

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

awesome-copycats issue #16 fix
authorluke bonham <dadasignificanulla@gmail.com>
Mon, 30 Sep 2013 14:29:18 +0000 (16:29 +0200)
committerluke bonham <dadasignificanulla@gmail.com>
Mon, 30 Sep 2013 14:29:18 +0000 (16:29 +0200)
widgets/bat.lua

index c5279bdd84e7fc9bad8d4548de287da31cb1ec96..aa896407231bb28730317fcd7582ab8f8b66114b 100644 (file)
@@ -73,7 +73,10 @@ local function worker(args)
             end
 
             local hrs = math.floor(time_rat)
+            if hrs < 0 then hrs = 0 elseif hrs > 23 then hrs = 23 end
+
             local min = math.floor((time_rat - hrs) * 60)
+            if min < 0 then min = 0 elseif min > 59 then min = 59 end
 
             bat_now.time = string.format("%02d:%02d", hrs, min)
             bat_now.perc = string.format("%d", (rem / tot) * 100)