From 669b0de47b35f99857e5e7060ae2cc425381c779 Mon Sep 17 00:00:00 2001 From: copycat-killer Date: Thu, 12 Jan 2017 22:46:19 +0100 Subject: [PATCH] quake: updated spawn call --- util/quake.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 -- 2.39.2