quake: updated spawn call

This commit is contained in:
copycat-killer 2017-01-12 22:46:19 +01:00
parent 3a2e5e0a8a
commit 669b0de47b
1 changed files with 3 additions and 3 deletions

View File

@ -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