diff options
| author | Dana Jansens <danakj@orodu.net> | 2003-01-03 18:21:28 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2003-01-03 18:21:28 +0000 |
| commit | 89e6d5c0e64513d06ac4368981239de969a6fc9d (patch) | |
| tree | f413abf83dd7a17527868b35d79ddff16afe9dd1 /scripts | |
| parent | 37c2e0f3296b4c1334ee92001c446d1bcc7665ee (diff) | |
add/lower work
Diffstat (limited to 'scripts')
| -rw-r--r-- | scripts/builtins.py | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/scripts/builtins.py b/scripts/builtins.py index 231d5ab5..8c042117 100644 --- a/scripts/builtins.py +++ b/scripts/builtins.py @@ -60,3 +60,18 @@ def resize(data): def execute(bin, screen = 0): Openbox_execute(openbox, screen, bin) + +def toggle_shade(data): + print "toggle_shade" + +def raise_win(data): + client = Openbox_findClient(openbox, data.window()) + if not client: return + screen = Openbox_screen(openbox, OBClient_screen(client)) + OBScreen_raise(screen, client) + +def lower_win(data): + client = Openbox_findClient(openbox, data.window()) + if not client: return + screen = Openbox_screen(openbox, OBClient_screen(client)) + OBScreen_lower(screen, client) |
