diff options
author | Anton Luka Šijanec <anton@sijanec.eu> | 2022-11-20 00:14:36 +0100 |
---|---|---|
committer | Anton Luka Šijanec <anton@sijanec.eu> | 2022-11-20 00:14:36 +0100 |
commit | 64ef61095a71c9b8c11315e4d0910a3bd82eb6ee (patch) | |
tree | 9c9bf406942fb86baddadd99866746594bc5d28c /gromka/keyboard.py | |
parent | Merge branch 'master' of ssh://ni.sijanec.eu/git/repo/luč (diff) | |
download | luč-64ef61095a71c9b8c11315e4d0910a3bd82eb6ee.tar luč-64ef61095a71c9b8c11315e4d0910a3bd82eb6ee.tar.gz luč-64ef61095a71c9b8c11315e4d0910a3bd82eb6ee.tar.bz2 luč-64ef61095a71c9b8c11315e4d0910a3bd82eb6ee.tar.lz luč-64ef61095a71c9b8c11315e4d0910a3bd82eb6ee.tar.xz luč-64ef61095a71c9b8c11315e4d0910a3bd82eb6ee.tar.zst luč-64ef61095a71c9b8c11315e4d0910a3bd82eb6ee.zip |
Diffstat (limited to '')
-rwxr-xr-x | gromka/keyboard.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gromka/keyboard.py b/gromka/keyboard.py index 4873636..5342fa5 100755 --- a/gromka/keyboard.py +++ b/gromka/keyboard.py @@ -13,7 +13,7 @@ with open(sys.argv[1], "r") as f: show = BeautifulSoup(data, "xml") -buttons = "F1 F2 F3 F4 F5 F6 F7 F8 F9 F10 F11 F12 Pause Ins".split(" ") + "/ 1 2 3 4 5 6 7 8 9 0 ' +".split(" ") + "Q W E R T Z U I O P Š }".split(" ") + "A S D F G H J K L Č { Ž".split(" ") + "< Y X C V B N M , . -".split(" ") +buttons = "Esc F1 F2 F3 F4 F5 F6 F7 F8 F9 F10 F11 F12 Pause Ins".split(" ") + "/ 1 2 3 4 5 6 7 8 9 0 ' +".split(" ") + "Q W E R T Z U I O P Š }".split(" ") + "A S D F G H J K L Č { Ž".split(" ") + "< Y X C V B N M , . -".split(" ") keys = {} for button in buttons: keys[button] = "" |