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

Added rate check
authorAndrej Kouřil <andering@gmail.com>
Sun, 27 Mar 2016 11:10:14 +0000 (13:10 +0200)
committerAndrej Kouřil <andering@gmail.com>
Sun, 27 Mar 2016 11:10:14 +0000 (13:10 +0200)
widgets/bat.lua

index b1180355bde75514f5229328492f267f8776ca8f..8cc1ea923d21668708c3ccd4f43df924309a78ba 100644 (file)
@@ -69,6 +69,13 @@ local function worker(args)
                        local rate_voltage      = tonumber(first_line(bstr .. "/voltage_now"))
                        local rate_power        = tonumber(first_line(bstr .. "/power_now"))
 
+                       -- if rate = 0 or rate not defined skip the round
+                       if not (rate_power and rate_power > 0) and 
+                               not (rate_current and  rate_current > 0) 
+                       then
+                               return 
+                       end
+
                        -- energy_now(P)[uWh], charge_now(I)[uAh] 
                        local energy_now        = tonumber(first_line(bstr .. "/energy_now") or
                                                                                first_line(bstr .. "/charge_now"))