diff options
author | tominabox1 <tjcampie@zmk.local> | 2020-08-23 16:46:04 -0500 |
---|---|---|
committer | tominabox1 <tjcampie@zmk.local> | 2020-08-23 16:46:04 -0500 |
commit | 83ddc8a6381673eeb91793981786b2dcf92d24dc (patch) | |
tree | 0197db766763deca0977529dbc0e87e6bab12904 /docs/static | |
parent | 6b23c7f554dbb27794cda5bff42545b1532b02c8 (diff) | |
parent | 6806cd2a55d6f59eb6c056d406de930b3dd8c9ea (diff) |
Merge branch 'main' of https://github.com/zmkfirmware/zmk into main
Diffstat (limited to 'docs/static')
-rw-r--r-- | docs/static/setup.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/static/setup.sh b/docs/static/setup.sh index bb61df6..4dc740a 100644 --- a/docs/static/setup.sh +++ b/docs/static/setup.sh @@ -38,7 +38,7 @@ echo "" echo "Keyboard Shield Selection:" prompt="Pick an keyboard:" -options=("Kyria" "Lily58" "Corne") +options=("Kyria" "Lily58" "Corne" "Splitreus62") PS3="$prompt " # TODO: Add support for "Other" and linking to docs on adding custom shields in user config repos. @@ -50,6 +50,7 @@ select opt in "${options[@]}" "Quit"; do 1 ) shield_title="Kyria" shield="kyria"; split="y"; break;; 2 ) shield_title="Lily58" shield="lily58"; split="y"; break;; 3 ) shield_title="Corne" shield="corne"; split="y"; break;; + 4 ) shield_title="Splitreus62" shield="splitreus62"; split="y"; break;; # Add link to docs on adding your own custom shield in your ZMK config! # $(( ${#options[@]}+1 )) ) echo "Other!"; break;; |