From cec568b076e903876a91d2922f9fa11e53e3df0b Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Wed, 8 Jan 2003 17:00:27 +0000 Subject: state_above/below work now --- scripts/builtins.py | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) (limited to 'scripts') diff --git a/scripts/builtins.py b/scripts/builtins.py index 9020859e..895339e1 100644 --- a/scripts/builtins.py +++ b/scripts/builtins.py @@ -182,8 +182,11 @@ def state_above(data, add=2): if not client: return root = ScreenInfo_rootWindow(OBDisplay_screenInfo(data.screen())) window = OBClient_window(client) + above = OBProperty_atom(Openbox_property(openbox), + OBProperty_net_wm_state_above) + print above send_client_msg(root, OBProperty_net_wm_state, window, add, - OBProperty_net_wm_state_above) + above) def state_below(data, add=2): """Toggles, adds or removes the 'below' state on a window.""" @@ -191,9 +194,11 @@ def state_below(data, add=2): if not client: return root = ScreenInfo_rootWindow(OBDisplay_screenInfo(data.screen())) window = OBClient_window(client) - print OBProperty_net_wm_state_below + below = OBProperty_atom(Openbox_property(openbox), + OBProperty_net_wm_state_below) + print below send_client_msg(root, OBProperty_net_wm_state, window, add, - OBProperty_net_wm_state_below) + below) ######################################### ### Convenience functions for scripts ### -- cgit v1.2.3