]> 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: make update() available; #236
authorcopycat-killer <dada@archlinux.info>
Sat, 19 Nov 2016 09:30:58 +0000 (10:30 +0100)
committercopycat-killer <dada@archlinux.info>
Sat, 19 Nov 2016 09:30:58 +0000 (10:30 +0100)
lain-git.rockspec
widgets/bat.lua

index 04dfe348ea0a3ab8783de876cff1ec81a887e0cf..b8d7abb3c27b7f89dc7d61e497a92f36f1ff73e3 100644 (file)
@@ -24,5 +24,5 @@ dependencies = {
 supported_platforms = { "linux" }
 build = {
    type = "builtin",
-   modules = { lain = "init.lua" },
+   modules = { lain = "init.lua" }
 }
index 991885a7aab82d0830c1062289594ed5de8a5afe..f63b1fa2700644e1ce7e695f7cab2c2bc56daee5 100644 (file)
@@ -68,7 +68,7 @@ local function worker(args)
         bat_now.n_perc[i] = 0
     end
 
-    function update()
+    function bat.update()
         local sum_rate_current = 0
         local sum_rate_voltage = 0
         local sum_rate_power   = 0
@@ -165,7 +165,7 @@ local function worker(args)
         end
     end
 
-    newtimer(battery, timeout, update)
+    newtimer(battery, timeout, bat.update)
 
     return setmetatable(bat, { __index = bat.widget })
 end