summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2003-01-08 17:00:27 +0000
committerDana Jansens <danakj@orodu.net>2003-01-08 17:00:27 +0000
commitcec568b076e903876a91d2922f9fa11e53e3df0b (patch)
tree88e2f6df7b0be49b1e3abbaed60bdda0f201a69e /scripts
parent368d981208c7f7d7865faac129160f277eb8d4e7 (diff)
state_above/below work now
Diffstat (limited to 'scripts')
-rw-r--r--scripts/builtins.py11
1 files changed, 8 insertions, 3 deletions
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 ###