diff options
author | krikun98 <krikun98@gmail.com> | 2020-11-05 23:45:46 +0300 |
---|---|---|
committer | innovaker <66737976+innovaker@users.noreply.github.com> | 2020-11-17 16:23:39 +0000 |
commit | f60439802ddd44ffec9d5081e2c1ea43e5ef5358 (patch) | |
tree | 443e374b42a469b5def52a64751ecb6e8be343ca /docs | |
parent | 3d030ec2abed9c8d48387e0002066c70bd5f085c (diff) |
Jian shield
Diffstat (limited to 'docs')
-rw-r--r-- | docs/docs/hardware.md | 3 | ||||
-rw-r--r-- | docs/static/setup.ps1 | 6 | ||||
-rw-r--r-- | docs/static/setup.sh | 3 |
3 files changed, 7 insertions, 5 deletions
diff --git a/docs/docs/hardware.md b/docs/docs/hardware.md index ea7350d..46e9f88 100644 --- a/docs/docs/hardware.md +++ b/docs/docs/hardware.md @@ -27,12 +27,13 @@ That being said, there are currently only a few specific [boards](/docs/faq#what - [Lily58](https://github.com/kata0510/Lily58) (`lily58_left` and `lily58_right`) - [Sofle](https://github.com/josefadamcik/SofleKeyboard) (`sofle_left` and `sofle_right`) - [Splitreus62](https://github.com/Na-Cly/splitreus62) (`splitreus62_left` and `splitreus62_right`) +- [Jorne](https://github.com/joric/jorne) (`jorne_left` and `jorne_right`) +- [Jian](https://github.com/KGOH/Jian-Info) (`jian_left` and `jian_right`) - [Reviung41](https://github.com/gtips/reviung/tree/master/reviung41) (`reviung41`) - [RoMac+ v4](https://www.littlekeyboards.com/products/romac) (`romac_plus`) - [RoMac v2](https://mechboards.co.uk/shop/kits/romac-macro-pad/) (`romac`) - [Boardsource 3x4 Macro](https://boardsource.xyz/store/5ecc2008eee64242946c98c1) (`boardsource3x4`) - [QAZ](https://www.cbkbd.com/product/qaz-keyboard-kit) (`qaz`) -- [Jorne](https://github.com/joric/jorne) (`jorne`) ## Other Hardware diff --git a/docs/static/setup.ps1 b/docs/static/setup.ps1 index bc5f30a..5cde921 100644 --- a/docs/static/setup.ps1 +++ b/docs/static/setup.ps1 @@ -91,9 +91,9 @@ Write-Host "Keyboard Shield Selection:" $prompt = "Pick a keyboard"
# TODO: Add support for "Other" and linking to docs on adding custom shields in user config repos.
-$options = "Kyria", "Lily58", "Corne", "Splitreus62", "Sofle", "Iris", "Reviung41", "RoMac", "RoMac+", "makerdiary M60", "Microdox", "TG4X", "QAZ", "NIBBLE", "Jorne"
-$names = "kyria", "lily58", "corne", "splitreus62", "sofle", "iris", "reviung41", "romac", "romac_plus", "m60", "microdox", "tg4x", "qaz", "nibble", "jorne"
-$splits = "y", "y", "y", "y", "y", "y", "n", "n", "n", "n", "y", "n", "n", "n"
+$options = "Kyria", "Lily58", "Corne", "Splitreus62", "Sofle", "Iris", "Reviung41", "RoMac", "RoMac+", "makerdiary M60", "Microdox", "TG4X", "QAZ", "NIBBLE", "Jorne", "Jian"
+$names = "kyria", "lily58", "corne", "splitreus62", "sofle", "iris", "reviung41", "romac", "romac_plus", "m60", "microdox", "tg4x", "qaz", "nibble", "jorne", "jian"
+$splits = "y", "y", "y", "y", "y", "y", "n", "n", "n", "n", "y", "n", "n", "n", "y", "y"
$choice = Get-Choice-From-Options -Options $options -Prompt $prompt
$shield_title = $($options[$choice])
diff --git a/docs/static/setup.sh b/docs/static/setup.sh index 7457747..4360f2c 100644 --- a/docs/static/setup.sh +++ b/docs/static/setup.sh @@ -92,7 +92,7 @@ echo "" echo "Keyboard Shield Selection:" prompt="Pick an keyboard:" -options=("Kyria" "Lily58" "Corne" "Splitreus62" "Sofle" "Iris" "Reviung41" "RoMac" "RoMac+" "makerdiary M60" "Microdox" "TG4X" "QAZ" "Jorne") +options=("Kyria" "Lily58" "Corne" "Splitreus62" "Sofle" "Iris" "Reviung41" "RoMac" "RoMac+" "makerdiary M60" "Microdox" "TG4X" "QAZ" "Jorne" "Jian") PS3="$prompt " # TODO: Add support for "Other" and linking to docs on adding custom shields in user config repos. @@ -116,6 +116,7 @@ select opt in "${options[@]}" "Quit"; do 13 ) shield_title="QAZ" shield="qaz"; split="n"; break;; 14 ) shield_title="NIBBLE" shield="nibble"; split="n"; break;; 15 ) shield_title="Jorne" shield="jorne"; split="y"; break;; + 16 ) shield_title="Jian" shield="jian"; split="y"; break;; # Add link to docs on adding your own custom shield in your ZMK config! # $(( ${#options[@]}+1 )) ) echo "Other!"; break;; |