all repos — openbox @ 9a2699fa487233b8f0e2e8f130863b9c0a40e849

openbox fork - make it a bit more like ryudo

place at 0,0 if the window is too big
Dana Jansens danakj@orodu.net
commit

9a2699fa487233b8f0e2e8f130863b9c0a40e849

parent

a4838c740cd52d4405fab019b73d118d02599c56

1 files changed, 6 insertions(+), 5 deletions(-)

jump to
M python/windowplacement.pypython/windowplacement.py

@@ -16,11 +16,12 @@ if ob.Openbox.state() == ob.State.Starting: return

#if data.client.positionRequested(): return cx, cy, cw, ch = client.area() sx, sy, sw, sh = ob.Openbox.screenArea(client.desktop()) - global _rand - if sw - cw - 1 <= 0: x = 0 - else: x = Random().randrange(sx, sw - cw - 1) - if (sh - ch - 1 <= 0: y = 0 - else: y = Random().randrange(sy, sh - ch - 1) + xr = sw - cw - 1 # x range + yr = sh - ch - 1 # y range + if xr <= 0: x = 0 + else: x = Random().randrange(sx, xr) + if yr <= 0: y = 0 + else: y = Random().randrange(sy, yr) client.setArea((x, y, cw, ch)) def cascade(client):