]> git.madduck.net Git - etc/awesome.git/blobdiff - widgets/bat.lua

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
[etc/awesome.git] / widgets / bat.lua
index b1180355bde75514f5229328492f267f8776ca8f..9bd526a2bd4148a947161fa1edb2bfdda91496d6 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"))
@@ -84,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