From: copycat-killer Date: Thu, 12 Jan 2017 21:46:19 +0000 (+0100) Subject: quake: updated spawn call X-Git-Url: https://git.madduck.net/etc/awesome.git/commitdiff_plain/669b0de47b35f99857e5e7060ae2cc425381c779 quake: updated spawn call --- diff --git a/util/quake.lua b/util/quake.lua index 6e520b5..c563695 100644 --- a/util/quake.lua +++ b/util/quake.lua @@ -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