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

asyncshell.request: removed unused argument
authorluke bonham <dada@archlinux.info>
Sun, 1 Feb 2015 10:39:26 +0000 (11:39 +0100)
committercopycat-killer <dada@archlinux.info>
Wed, 5 Aug 2015 11:31:15 +0000 (13:31 +0200)
asyncshell.lua
helpers.lua
util/separators.lua

index 4a01caad7f9160a8a6cc9d18f35723df12afd155..36ccc47a916b80feb77c06f20a8adb8479d274b2 100644 (file)
@@ -44,8 +44,7 @@ function asyncshell.request(command, callback)
       string.format("sh -c '%s > %s; " ..
                     'echo "asyncshell.deliver(%s)" | ' ..
                     "awesome-client' 2> /dev/null",
-                    string.gsub(command, "'", "'\\''"), tmpfname,
-                    id, tmpfname)
+                    string.gsub(command, "'", "'\\''"), tmpfname, id)
    spawn(req, false)
    return id
 end
index 1dfb09b6b40aca21296227d79ce23f65c5658844..9c4a83fe90fd756fdfebfb32c41265cd4f7015a8 100644 (file)
@@ -9,7 +9,7 @@
 local debug  = require("debug")
 
 local capi   = { timer = timer }
-local io     = { open = io.open,
+local io     = { open  = io.open,
                  lines = io.lines }
 local rawget = rawget
 
index 0eb0658b91aead85a1e88abb58c13610d5429d05..d2a3891381b6be586140e9b143ccee6368e406f1 100644 (file)
@@ -2,7 +2,7 @@
 --[[
                                                    
      Licensed under GNU General Public License v2  
-      * (c) 2015,      luke bonham                 
+      * (c) 2015,      Luke Bonham                 
       * (c) 2015,      plotnikovanton              
                                                    
 --]]
@@ -11,7 +11,7 @@ local wibox     = require("wibox")
 local beautiful = require("beautiful")
 local gears     = require("gears")
 
--- Lain cairo separators util submodule
+-- Lain Cairo separators util submodule
 -- lain.util.separators
 local separators = {}