]> 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:

smapi: round remaining hour estimation
authorOleg Hahm <oleg@hobbykeller.org>
Sun, 17 May 2015 20:58:52 +0000 (22:58 +0200)
committerOleg Hahm <oleg@hobbykeller.org>
Sun, 17 May 2015 20:58:52 +0000 (22:58 +0200)
widgets/contrib/tpbat/smapi.lua

index 862d4cd66e16189bd81066364c3cbe8afd82a000..c7f093e1a6b58cc96993e38475664c8dea79f2c4 100644 (file)
@@ -87,7 +87,7 @@ function smapi:battery(name)
             return "N/A"
         end
 
-        local hrs = mins_left / 60
+        local hrs = math.floor(mins_left / 60)
         local min = mins_left % 60
         return string.format("%02d:%02d", hrs, min)
     end