1
0
Fork 0

PR190hotfix.sh, fresh hexes, makeallhex.sh script

This commit is contained in:
yoyoerx 2016-03-11 11:16:19 -05:00
parent 1d4b408fbc
commit 58bbfc5fa6
33 changed files with 32894 additions and 41292 deletions

View file

@ -0,0 +1,9 @@
#!/bin/bash
#a quick tool to rebuild all the hex files for the keymaps in the ./keymaps/ directory
make clean
for f in ./keymaps/*
do
MAPNAME=$(echo "$f"|sed -r 's#^./keymaps/##')
make KEYMAP=$MAPNAME
mv ergodox_ez.hex "$f/$MAPNAME.hex"
done