I'm looking for a devilspie2 alternative that can handle more window events, like "on resize". Right now there's only open and close window events.
For example, I would like to undecorate a window only if it's maximized.
if (get_application_name() == "myapp") then
if (get_window_is_maximized() == true) then
undecorate_window()
else
decorate_window()
end
end
