all repos — openbox @ be18a7c32eea968c4bc4678da0ab291d6a660376

openbox fork - make it a bit more like ryudo

add alt-tab to the default bindings
Dana Jansens danakj@orodu.net
commit

be18a7c32eea968c4bc4678da0ab291d6a660376

parent

997f94cf8657201ea9d1f2497e4ec4f56342e22f

1 files changed, 4 insertions(+), 0 deletions(-)

jump to
M scripts/defaults.pyscripts/defaults.py

@@ -22,6 +22,10 @@ lambda(d): ob.execute("xterm", d.screen))

ob.kbind(["A-F4"], ob.KeyContext.All, callbacks.close) +# focus bindings +ob.kbind(["A-Tab"], ob.KeyContext.All, focus.focus_next_stacked) +ob.kbind(["A-S-Tab"], ob.KeyContext.All, focus.focus_prev_stacked) + # desktop changing bindings ob.kbind(["C-1"], ob.KeyContext.All, lambda(d): callbacks.change_desktop(d, 0)) ob.kbind(["C-2"], ob.KeyContext.All, lambda(d): callbacks.change_desktop(d, 1))