add alt-tab to the default bindings
This commit is contained in:
parent
997f94cf86
commit
be18a7c32e
1 changed files with 4 additions and 0 deletions
|
@ -22,6 +22,10 @@ ob.mbind("Left", ob.MouseContext.Root, ob.MouseAction.Click,
|
|||
|
||||
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))
|
||||
|
|
Loading…
Reference in a new issue