X-Git-Url: https://git.madduck.net/etc/awesome.git/blobdiff_plain/d549219a2eaa9bcd8e9c2a3c65a0342dca74d1b1..444ffd03c128f45ac1227b33ceb951ae12506a70:/util/quake.lua?ds=inline diff --git a/util/quake.lua b/util/quake.lua index 9f548a8..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 @@ -98,7 +98,7 @@ end function quake:compute_size() local geom - if self.skip_wibox then + if not self.overlap then geom = screen[self.screen].workarea else geom = screen[self.screen].geometry @@ -119,15 +119,15 @@ end function quake:new(config) local conf = config or {} - conf.app = conf.app or "xterm" -- application to spawn - conf.name = conf.name or "QuakeDD" -- window name - conf.argname = conf.argname or "-name %s" -- how to specify window name - conf.extra = conf.extra or "" -- extra arguments - conf.visible = conf.visible or false -- initially not visible - conf.border = conf.border or 1 -- client border width - conf.followtag = conf.followtag or true -- spawn on currently focused screen - conf.skip_wibox = conf.skip_wibox or true -- skip the wibox (defaut) or overlap it - conf.screen = conf.screen or awful.screen.focused() + conf.app = conf.app or "xterm" -- application to spawn + conf.name = conf.name or "QuakeDD" -- window name + conf.argname = conf.argname or "-name %s" -- how to specify window name + conf.extra = conf.extra or "" -- extra arguments + conf.border = conf.border or 1 -- client border width + conf.visible = conf.visible or false -- initially not visible + conf.followtag = conf.followtag or false -- spawn on currently focused screen + conf.overlap = conf.overlap or false -- overlap wibox + conf.screen = conf.screen or awful.screen.focused() -- If width or height <= 1 this is a proportion of the workspace conf.height = conf.height or 0.25 -- height