All patches and comments are welcome. Please squash your changes to logical
commits before using git-format-patch and git-send-email to
patches@git.madduck.net.
If you'd read over the Git project's submission guidelines and adhered to them,
I'd be especially grateful.
4 Licensed under GNU General Public License v2
5 * (c) 2016, Luke Bonham
10 local awful = require("awful")
11 local capi = { client = client,
12 timer = require("gears.timer") }
13 local math = { floor = math.floor }
18 local setmetatable = setmetatable
19 local tostring = tostring
21 -- Quake-like Dropdown application spawn
24 -- If you have a rule like "awful.client.setslave" for your terminals,
25 -- ensure you use an exception for QuakeDD. Otherwise, you may
26 -- run into problems with focus.
28 function quake:display()
29 if self.followtag then self.screen = awful.screen.focused() end
31 -- First, we locate the client
34 for c in awful.client.iterate(function (c)
35 -- c.name may be changed!
36 return c.instance == self.name
37 end, nil, self.screen)
43 -- Additional matching clients, let's remove the sticky bit
44 -- which may persist between awesome restarts. We don't close
45 -- them as they may be valuable. They will just turn into
53 if not client and not self.visible then return end
56 -- The client does not exist, we spawn it
57 awful.util.spawn(string.format("%s %s %s", self.app,
58 string.format(self.argname, self.name), self.extra),
65 awful.client.floating.set(client, true)
66 client.border_width = self.border
67 client.size_hints_honor = false
70 client:geometry(self.geometry)
74 -- Not sticky and on top
78 client.skip_taskbar = true
84 self.last_tag = awful.tag.selected(self.screen)
85 client:tags({awful.tag.selected(self.screen)})
86 capi.client.focus = client
89 local ctags = client:tags()
90 for i, t in pairs(ctags) do
99 function quake:compute_size()
100 local geom = screen[self.screen].workarea
102 if self.width <= 1 then width = math.floor(geom.width * self.width) - 2 * self.border end
103 if self.height <= 1 then height = math.floor(geom.height * self.height) end
105 if self.horiz == "left" then x = geom.x
106 elseif self.horiz == "right" then x = geom.width + geom.x - self.width
107 else x = geom.x + (geom.width - self.width)/2 end
108 if self.vert == "top" then y = geom.y
109 elseif self.vert == "bottom" then y = geom.height + geom.y - self.height
110 else y = geom.y + (geom.height - self.height)/2 end
111 self.geometry = { x = x, y = y, width = width, height = height }
114 function quake:new(config)
115 local conf = config or {}
117 conf.app = conf.app or "xterm" -- application to spawn
118 conf.name = conf.name or "QuakeDD" -- window name
119 conf.argname = conf.argname or "-name %s" -- how to specify window name
120 conf.extra = conf.extra or "" -- extra arguments
121 conf.visible = conf.visible or false -- initially not visible
122 conf.border = conf.border or 1 -- client border width
123 conf.followtag = conf.followtag or false -- spawn on currently focused screen
124 conf.screen = conf.screen or awful.screen.focused()
126 -- If width or height <= 1 this is a proportion of the workspace
127 conf.height = conf.height or 0.25 -- height
128 conf.width = conf.width or 1 -- width
129 conf.vert = conf.vert or "top" -- top, bottom or center
130 conf.horiz = conf.horiz or "left" -- left, right or center
132 local console = setmetatable(conf, { __index = quake })
133 capi.client.connect_signal("manage", function(c)
134 if c.instance == console.name and c.screen == console.screen then
138 capi.client.connect_signal("unmanage", function(c)
139 if c.instance == console.name and c.screen == console.screen then
140 console.visible = false
144 -- "Reattach" currently running quake application. This is in case awesome is restarted.
145 local reattach = capi.timer { timeout = 0 }
146 reattach:connect_signal("timeout", function()
147 if self.followtag then self.screen = awful.screen.focused() end
156 function quake:toggle()
157 if self.followtag then self.screen = awful.screen.focused() end
158 local current_tag = awful.tag.selected(self.screen)
159 if self.last_tag ~= current_tag and self.visible then
160 awful.client.movetotag(current_tag, self:display())
162 self.visible = not self.visible
167 setmetatable(quake, { __call = function(_, ...) return quake:new(...) end })