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

Fix typo in return statement
authorJustin Endacott <justin.endacott@gmail.com>
Tue, 6 Dec 2016 08:40:40 +0000 (18:40 +1000)
committerJustin Endacott <justin.endacott@gmail.com>
Tue, 6 Dec 2016 08:40:40 +0000 (18:40 +1000)
widgets/pulsebar.lua

index fc2951b261a5e01bcd580bb7d916c28354198e0d..006515ccc2c08bb0095abbc9b7b1ee70bd1a2173 100644 (file)
@@ -178,4 +178,4 @@ local function worker(args)
     return pulsebar
 end
 
-eturn setmetatable(pulsebar, { __call = function(_, ...) return worker(...) end })
+return setmetatable(pulsebar, { __call = function(_, ...) return worker(...) end })