mirror of https://github.com/lcpz/lain.git
quake: updated spawn call
This commit is contained in:
parent
3a2e5e0a8a
commit
669b0de47b
|
@ -54,9 +54,9 @@ function quake:display()
|
|||
|
||||
if not client then
|
||||
-- The client does not exist, we spawn it
|
||||
awful.spawn(string.format("%s %s %s", self.app,
|
||||
string.format(self.argname, self.name), self.extra),
|
||||
false, self.screen)
|
||||
cmd = string.format("%s %s %s", self.app,
|
||||
string.format(self.argname, self.name), self.extra)
|
||||
awful.spawn(cmd, { tag = self.screen.selected_tag })
|
||||
self.notexist = true
|
||||
return
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue