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

bat: #177 fix Watt computation 2
authorLuke Bonham <dada@archlinux.info>
Tue, 22 Mar 2016 07:59:30 +0000 (08:59 +0100)
committerLuke Bonham <dada@archlinux.info>
Tue, 22 Mar 2016 07:59:30 +0000 (08:59 +0100)
widgets/bat.lua

index 9740bbed1e75ee0b0655b3295e73eeb65937a9dd..56bba23cf35a21c573392de3bb5a970f0d87b3ae 100644 (file)
@@ -63,26 +63,25 @@ local function worker(args)
 
         if present == "1"
         then
-            local rate     = first_line(bstr .. "/power_now")
+            local rate = tonumber(first_line(bstr .. "/power_now"))
+            local current_now = false
 
-            local rate_alt = first_line(bstr .. "/current_now")
+            if not rate then
+                rate = tonumber(first_line(bstr .. "/current_now"))
+                current_now = true
+            end
 
-            local ratev    = first_line(bstr .. "/voltage_now")
+            local ratev    = tonumber(first_line(bstr .. "/voltage_now"))
 
-            local rem      = first_line(bstr .. "/energy_now") or
-                             first_line(bstr .. "/charge_now")
+            local rem      = tonumber(first_line(bstr .. "/energy_now") or
+                                      first_line(bstr .. "/charge_now"))
 
-            local tot      = first_line(bstr .. "/energy_full") or
-                             first_line(bstr .. "/charge_full")
+            local tot      = tonumber(first_line(bstr .. "/energy_full") or
+                                      first_line(bstr .. "/charge_full"))
 
             bat_now.status = first_line(bstr .. "/status") or "N/A"
             bat_now.ac     = first_line(string.format("/sys/class/power_supply/%s/online", ac)) or "N/A"
 
-            rate  = tonumber(rate)
-            ratev = tonumber(ratev)
-            rem   = tonumber(rem)
-            tot   = tonumber(tot)
-
             local time_rat = 0
             if bat_now.status == "Charging"
             then
@@ -110,14 +109,11 @@ local function worker(args)
                 bat_now.perc = "0"
             end
 
-            if rate and ratev then
+            if current_now then
                 bat_now.watt = string.format("%.2fW", (rate * ratev) / 1e12)
-            elseif rate_alt then
-                bat_now.watt = string.format("%.2fW", rate_alt)
             else
-                bat_now.watt = "N/A"
+                bat_now.watt = string.format("%.2fW", rate)
             end
-
         end
 
         widget = bat.widget