diff options
author | Pete Johanson <peter@peterjohanson.com> | 2020-08-10 12:58:04 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-10 12:58:04 -0400 |
commit | 579ca63120c7ba3df430d0c5c059140966f77bca (patch) | |
tree | 9cac33e57779866ae9f30e667923f9d964837f66 /docs | |
parent | e24126a4b6abebd2b9d6232f09ab84dc675f51a4 (diff) | |
parent | 4da2070a5b896fa2c28d77f0dde8508c739d0deb (diff) |
Merge pull request #80 from petejohanson/shields/corne-initial-definition
Initial Corne shield definition
Diffstat (limited to 'docs')
-rw-r--r-- | docs/docs/hardware.md | 1 | ||||
-rw-r--r-- | docs/static/setup.sh | 3 |
2 files changed, 3 insertions, 1 deletions
diff --git a/docs/docs/hardware.md b/docs/docs/hardware.md index 015b21d..951cee0 100644 --- a/docs/docs/hardware.md +++ b/docs/docs/hardware.md @@ -22,6 +22,7 @@ That being said, there are currently only a few specific [boards](/docs/faq#what ## Keyboard Shields - [Kyria](https://splitkb.com/products/kyria-pcb-kit) (`kyria_left` and `kyria_right`) +- [Corne](https://github.com/foostan/crkbd) (`corne_left` and `corne_right`) - [Lily58](https://github.com/kata0510/Lily58) (`lily58_left` and `lily58_right`) ## Other Hardware 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;; |