forked from kofal.net/zmk
Add Reviung41 Shield Definitions
This commit is contained in:
@@ -28,6 +28,7 @@ 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`)
|
||||
- [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`)
|
||||
- [QAZ](https://www.cbkbd.com/product/qaz-keyboard-kit) (`qaz`)
|
||||
|
||||
6
docs/static/setup.ps1
vendored
6
docs/static/setup.ps1
vendored
@@ -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", "RoMac", "RoMac+", "makerdiary M60", "Microdox", "TG4X", "QAZ"
|
||||
$names = "kyria", "lily58", "corne", "splitreus62", "sofle", "iris", "romac", "romac_plus", "m60", "microdox", "tg4x", "qaz"
|
||||
$splits = "y", "y", "y", "y", "y", "y", "n", "n", "n", "y", "n", "n"
|
||||
$options = "Kyria", "Lily58", "Corne", "Splitreus62", "Sofle", "Iris", "Reviung41", "RoMac", "RoMac+", "makerdiary M60", "Microdox", "TG4X", "QAZ"
|
||||
$names = "kyria", "lily58", "corne", "splitreus62", "sofle", "iris", "reviung41", "romac", "romac_plus", "m60", "microdox", "tg4x", "qaz"
|
||||
$splits = "y", "y", "y", "y", "y", "y", "n", "n", "n", "n", "y", "n", "n"
|
||||
|
||||
$choice = Get-Choice-From-Options -Options $options -Prompt $prompt
|
||||
$shield_title = $($options[$choice])
|
||||
|
||||
15
docs/static/setup.sh
vendored
15
docs/static/setup.sh
vendored
@@ -58,7 +58,7 @@ echo ""
|
||||
echo "Keyboard Shield Selection:"
|
||||
|
||||
prompt="Pick an keyboard:"
|
||||
options=("Kyria" "Lily58" "Corne" "Splitreus62" "Sofle" "Iris" "RoMac" "RoMac+" "makerdiary M60" "Microdox" "TG4X" "QAZ")
|
||||
options=("Kyria" "Lily58" "Corne" "Splitreus62" "Sofle" "Iris" "Reviung41" "RoMac" "RoMac+" "makerdiary M60" "Microdox" "TG4X" "QAZ")
|
||||
|
||||
PS3="$prompt "
|
||||
# TODO: Add support for "Other" and linking to docs on adding custom shields in user config repos.
|
||||
@@ -73,12 +73,13 @@ select opt in "${options[@]}" "Quit"; do
|
||||
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;;
|
||||
7 ) shield_title="RoMac" shield="romac"; split="n"; break;;
|
||||
8 ) shield_title="RoMac+" shield="romac_plus"; split="n"; break;;
|
||||
9 ) shield_title="M60" shield="m60"; split="n"; break;;
|
||||
10 ) shield_title="Microdox" shield="microdox"; split="y"; break;;
|
||||
11 ) shield_title="TG4X" shield="tg4x"; split="n"; break;;
|
||||
12 ) shield_title="QAZ" shield="qaz"; split="n"; break;;
|
||||
7 ) shield_title="Reviung41" shield="reviung41"; split="n"; break;;
|
||||
8 ) shield_title="RoMac" shield="romac"; split="n"; break;;
|
||||
9 ) shield_title="RoMac+" shield="romac_plus"; split="n"; break;;
|
||||
10 ) shield_title="M60" shield="m60"; split="n"; break;;
|
||||
11 ) shield_title="Microdox" shield="microdox"; split="y"; break;;
|
||||
12 ) shield_title="TG4X" shield="tg4x"; split="n"; break;;
|
||||
13 ) shield_title="QAZ" shield="qaz"; split="n"; break;;
|
||||
|
||||
# Add link to docs on adding your own custom shield in your ZMK config!
|
||||
# $(( ${#options[@]}+1 )) ) echo "Other!"; break;;
|
||||
|
||||
Reference in New Issue
Block a user