X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=scripts%2Fwindowplacement.py;h=ddbcdd7632ede3862810fdfd438d80ae50b0be1e;hb=dbfdd0fefb9180334fd08b2a853e62d5356d71d4;hp=aa9271ba512012bc3a1c17f7baffc72156bf8fb8;hpb=41a03629c9f166f7a1b427ed1634b44c6c38da6e;p=chaz%2Fopenbox diff --git a/scripts/windowplacement.py b/scripts/windowplacement.py index aa9271ba..ddbcdd76 100644 --- a/scripts/windowplacement.py +++ b/scripts/windowplacement.py @@ -7,6 +7,16 @@ ### these. ### ############################################################################ +############################################################################## +### Options for the windowplacement module: ### +### ### +# ignore_requested_positions - When true, the placement algorithm will ### +### attempt to place windows even when they ### +### request a position (like XMMS). ### +ignore_requested_positions = 0 ### +### ### +############################################################################## + import otk import ob import random @@ -15,7 +25,8 @@ _rand = random.Random() def random(data): if not data.client: return - if data.client.positionRequested(): return + if not ignore_requested_positions: + if data.client.positionRequested(): return client_area = data.client.area() frame_size = data.client.frame.size() screen_area = ob.openbox.screen(data.screen).area()