Created
September 2, 2015 20:22
-
-
Save blueyed/461742557500677e8409 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
local spawn_with_props = function(cmd, props) | |
local pid, snid = awful.util.spawn(cmd) | |
if not snid then | |
bnote("ASSERTION FAILURE (spawn_with_props): no snid") | |
else | |
snid_props_cb[snid] = props | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment