-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
upgrade qmk to 0.22.12, fix combos loading/introspection not all custom keymaps confirmed working with new qmk
- Loading branch information
Showing
30 changed files
with
455 additions
and
456 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
export QMK_HOME=`expand_path qmk_firmware` | ||
export QMK_HOME=`expand_path ../keymaps_qmk` | ||
PATH_add ./bin |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,8 @@ | ||
#!/bin/bash | ||
# qmk clone vial-kb/vial-qmk -b rp2040 | ||
|
||
qmk clone vial-kb/vial-qmk -b vial | ||
cd qmk_firmware && git checkout 0373554f48c5fbcb827ca3cebc25b1d80759d7c4 | ||
# qmk clone -b vial vial-kb/vial-qmk ${QMK_HOME} | ||
# cd ${QMK_HOME} && git checkout 0373554f48c5fbcb827ca3cebc25b1d80759d7c4 | ||
# cd ${QMK_HOME} && git checkout ccda5d2d2f0b2e71e16d72636622743a68757b50 # 2023-10-14, with OS_DETECTION_ENABLE, apparently causes issues with LT combos defined in combos.def | ||
|
||
# qmk clone -b 0.18.17 | ||
qmk clone -b 0.22.12 qmk/qmk_firmware ${QMK_HOME} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
#!/bin/bash -ex | ||
dir=$PWD | ||
|
||
if [[ ! -d "$dir/qmk_firmware" ]]; then | ||
echo "$dir/qmk_firmware" does not exist | ||
if [[ ! -d "${QMK_HOME}" ]]; then | ||
echo "${QMK_HOME}" does not exist | ||
exit 1 | ||
fi | ||
|
||
ln -nfs "$dir/users/patcoll" "$dir/qmk_firmware/users/patcoll" | ||
ln -nfs "$dir/users/patcoll" "${QMK_HOME}/users/patcoll" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.