separate off execute, since its not a callback function

This commit is contained in:
Dana Jansens 2003-01-04 02:34:58 +00:00
parent a84666e955
commit 5f34069a3c

View file

@ -65,9 +65,6 @@ def resize(data):
data.press_clientwidth() + dx,
data.press_clientheight() + dy);
def execute(bin, screen = 0):
Openbox_execute(openbox, screen, bin)
def restart(data):
Openbox_restart(openbox, "")
@ -101,5 +98,12 @@ def unshade(data):
client = Openbox_findClient(openbox, data.window())
if not client: return
OBClient_shade(client, 0)
#########################################
### Convenience functions for scripts ###
#########################################
def execute(bin, screen = 0):
Openbox_execute(openbox, screen, bin)
print "Loaded builtins.py"