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