On Fri, Jul 16, 2004 at 09:36:57AM +0200, Ulrich Pfeifer wrote:
> Any hints are appreciated.

Edge snap will stop you from manually resizing/moving the window so.
The following function will do it (assuming 1280x1024 resolution), 
but would just fullscreening the window do it?

function fullfloat(frame)
     local cg=_:current():geom();
     local fg=_:geom();
     _:request_geom{
         w=1280+fg.w-cg.w,
         h=1024+fg.h-cg.h,
          x=-cg.x,
          y=-cg.y,
     }
end

-- 
Tuomo

Reply via email to