summaryrefslogtreecommitdiff
path: root/scripts/builtins.py
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/builtins.py')
-rw-r--r--scripts/builtins.py13
1 files changed, 11 insertions, 2 deletions
diff --git a/scripts/builtins.py b/scripts/builtins.py
index 895339e1..a42b8706 100644
--- a/scripts/builtins.py
+++ b/scripts/builtins.py
@@ -184,7 +184,6 @@ def state_above(data, add=2):
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,
above)
@@ -196,10 +195,20 @@ def state_below(data, add=2):
window = OBClient_window(client)
below = OBProperty_atom(Openbox_property(openbox),
OBProperty_net_wm_state_below)
- print below
send_client_msg(root, OBProperty_net_wm_state, window, add,
below)
+def state_shaded(data, add=2):
+ """Toggles, adds or removes the 'shaded' state on a window."""
+ client = Openbox_findClient(openbox, data.window())
+ if not client: return
+ root = ScreenInfo_rootWindow(OBDisplay_screenInfo(data.screen()))
+ window = OBClient_window(client)
+ shaded = OBProperty_atom(Openbox_property(openbox),
+ OBProperty_net_wm_state_shaded)
+ send_client_msg(root, OBProperty_net_wm_state, window, add,
+ shaded)
+
#########################################
### Convenience functions for scripts ###
#########################################