summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorPete Johanson <peter@peterjohanson.com>2020-08-10 12:37:05 -0400
committerPete Johanson <peter@peterjohanson.com>2020-08-10 12:37:05 -0400
commit851d54ad960cbcb914cef83c9d1f7fcec49ecf21 (patch)
tree9153690e695ce4903bd327cc5f8074327b81441a /docs
parentaebeb7a153eb11e2f53b8def7235a021effd7e1f (diff)
Add Corne to setup.sh script.
Diffstat (limited to 'docs')
-rw-r--r--docs/static/setup.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/static/setup.sh b/docs/static/setup.sh
index 327fc84..4208943 100644
--- a/docs/static/setup.sh
+++ b/docs/static/setup.sh
@@ -37,7 +37,7 @@ echo ""
echo "Keyboard Shield Selection:"
prompt="Pick an keyboard:"
-options=("Kyria" "Lily58")
+options=("Kyria" "Lily58" "Corne")
PS3="$prompt "
# TODO: Add support for "Other" and linking to docs on adding custom shields in user config repos.
@@ -48,6 +48,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;;
# Add link to docs on adding your own custom shield in your ZMK config!
# $(( ${#options[@]}+1 )) ) echo "Other!"; break;;