]>
Dogcows Code - chaz/openbox/blob - python/keymap.py
1 from input import Keyboard
8 Keyboard
.bind(key
, run
)
11 def run(keydata
, client
):
12 """Run a key press event through the keymap"""
13 for key
, func
in _map
:
14 if (keydata
.keychain
== key
):
This page took 0.031383 seconds and 4 git commands to generate.