]> 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 rule for bat_now.status = Full when rate suppose be 0
authorAndrej Kouřil <andering@gmail.com>
Sun, 27 Mar 2016 13:28:52 +0000 (15:28 +0200)
committerAndrej Kouřil <andering@gmail.com>
Sun, 27 Mar 2016 13:28:52 +0000 (15:28 +0200)
widgets/bat.lua

index 8cc1ea923d21668708c3ccd4f43df924309a78ba..9bd526a2bd4148a947161fa1edb2bfdda91496d6 100644 (file)
@@ -91,6 +91,14 @@ local function worker(args)
                        bat_now.status = first_line(bstr .. "/status") or "N/A"
                        bat_now.ac_status     = first_line(astr .. "/online") or "N/A"
 
+                       -- 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) and
+                               not bat_now.status == "Full"
+                       then
+                               return 
+                       end
+                       
                        local rate_time = 0
                        if bat_now.status == "Charging"
                        then