You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
297 B
Bash
9 lines
297 B
Bash
#!/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
|