diff options
author | Pete Johanson <peter@peterjohanson.com> | 2020-09-03 00:05:06 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-03 00:05:06 -0400 |
commit | c8f95dbaa8ec6cc28bc8fabb5726aa75c80c6f89 (patch) | |
tree | 9cb6cf101721b797d12512a8218260d08a817f7c /docs | |
parent | d53a8e36ca17f988b7b1df754478baf2e87597e6 (diff) | |
parent | f738fd7a670994bfbe20601a4de9a64cd98020ad (diff) |
Merge pull request #155 from kurtis-lew/iris
Update setup.sh
Diffstat (limited to 'docs')
-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 a32718d..70defdf 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" "Splitreus62" "Sofle") +options=("Kyria" "Lily58" "Corne" "Splitreus62" "Sofle" "Iris") PS3="$prompt " # TODO: Add support for "Other" and linking to docs on adding custom shields in user config repos. @@ -52,6 +52,7 @@ select opt in "${options[@]}" "Quit"; do 3 ) shield_title="Corne" shield="corne"; split="y"; break;; 4 ) shield_title="Splitreus62" shield="splitreus62"; split="y"; break;; 5 ) shield_title="Sofle" shield="sofle"; split="y"; break;; + 6 ) shield_title="Iris" shield="iris"; split="y"; break;; # Add link to docs on adding your own custom shield in your ZMK config! # $(( ${#options[@]}+1 )) ) echo "Other!"; break;; |