feat: Add qaz to setup scripts.
This commit is contained in:
parent
b193e5b1bc
commit
43c900f94a
2 changed files with 5 additions and 4 deletions
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"
|
$prompt = "Pick a keyboard"
|
||||||
|
|
||||||
# TODO: Add support for "Other" and linking to docs on adding custom shields in user config repos.
|
# 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"
|
$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"
|
$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"
|
$splits = "y", "y", "y", "y", "y", "y", "n", "n", "n", "y", "n", "n"
|
||||||
|
|
||||||
$choice = Get-Choice-From-Options -Options $options -Prompt $prompt
|
$choice = Get-Choice-From-Options -Options $options -Prompt $prompt
|
||||||
$shield_title = $($options[$choice])
|
$shield_title = $($options[$choice])
|
||||||
|
|
3
docs/static/setup.sh
vendored
3
docs/static/setup.sh
vendored
|
@ -58,7 +58,7 @@ echo ""
|
||||||
echo "Keyboard Shield Selection:"
|
echo "Keyboard Shield Selection:"
|
||||||
|
|
||||||
prompt="Pick an keyboard:"
|
prompt="Pick an keyboard:"
|
||||||
options=("Kyria" "Lily58" "Corne" "Splitreus62" "Sofle" "Iris" "RoMac" "RoMac+" "makerdiary M60" "Microdox" "TG4X")
|
options=("Kyria" "Lily58" "Corne" "Splitreus62" "Sofle" "Iris" "RoMac" "RoMac+" "makerdiary M60" "Microdox" "TG4X" "QAZ")
|
||||||
|
|
||||||
PS3="$prompt "
|
PS3="$prompt "
|
||||||
# TODO: Add support for "Other" and linking to docs on adding custom shields in user config repos.
|
# TODO: Add support for "Other" and linking to docs on adding custom shields in user config repos.
|
||||||
|
@ -78,6 +78,7 @@ select opt in "${options[@]}" "Quit"; do
|
||||||
9 ) shield_title="M60" shield="m60"; split="n"; break;;
|
9 ) shield_title="M60" shield="m60"; split="n"; break;;
|
||||||
10 ) shield_title="Microdox" shield="microdox"; split="y"; break;;
|
10 ) shield_title="Microdox" shield="microdox"; split="y"; break;;
|
||||||
11 ) shield_title="TG4X" shield="tg4x"; split="n"; break;;
|
11 ) shield_title="TG4X" shield="tg4x"; split="n"; break;;
|
||||||
|
12 ) shield_title="QAZ" shield="qaz"; split="n"; break;;
|
||||||
|
|
||||||
# Add link to docs on adding your own custom shield in your ZMK config!
|
# Add link to docs on adding your own custom shield in your ZMK config!
|
||||||
# $(( ${#options[@]}+1 )) ) echo "Other!"; break;;
|
# $(( ${#options[@]}+1 )) ) echo "Other!"; break;;
|
||||||
|
|
Loading…
Reference in a new issue