mirror of
https://github.com/qmk/qmk_firmware
synced 2024-11-18 01:46:09 +00:00
e5721bbd37
* Parse headers to data * Regen headers from data
8 lines
297 B
Bash
Executable file
8 lines
297 B
Bash
Executable file
#!/bin/bash
|
|
|
|
for lang in $(find data/constants/keycodes/extras/ -type f -printf "%f\n" | sed "s/keycodes_//g" | sed "s/_[0-9].*//"); do
|
|
data=$(qmk generate-keycode-extras --version latest --lang $lang)
|
|
if [ "$?" == "0" ]; then
|
|
echo "$data" > quantum/keymap_extras/keymap_$lang.h
|
|
fi
|
|
done
|