initial
This commit is contained in:
commit
cc2410d696
|
@ -0,0 +1,17 @@
|
||||||
|
-- allows automatically focusing back to the previous client
|
||||||
|
-- on window close or minimize.
|
||||||
|
|
||||||
|
function backham()
|
||||||
|
local s = awful.screen.focused()
|
||||||
|
local c = awful.client.focus.history.get(s, 0)
|
||||||
|
if c then
|
||||||
|
client.focus = c
|
||||||
|
c:raise()
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
client.connect_signal("property::minimized", backham)
|
||||||
|
-- attach to minimized state
|
||||||
|
|
||||||
|
client.connect_signal("unmanage", backham)
|
||||||
|
-- attach to closed state
|
Loading…
Reference in New Issue