diff options
author | Richard Jones <[email protected]> | 2020-09-06 15:51:12 +0100 |
---|---|---|
committer | Richard Jones <[email protected]> | 2020-09-06 15:51:12 +0100 |
commit | 80034c007826a026833d85d4fde7fc9be3898229 (patch) | |
tree | 61670f6dd7ced960d35ec68a5782b4d1626a0bcb /docs/static | |
parent | e15fe2665ad993ac4b377ce976af0ce04427d486 (diff) | |
download | zmk-80034c007826a026833d85d4fde7fc9be3898229.tar.gz zmk-80034c007826a026833d85d4fde7fc9be3898229.zip |
Add RoMac / non-split template support
Diffstat (limited to 'docs/static')
-rw-r--r-- | docs/static/setup.sh | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/docs/static/setup.sh b/docs/static/setup.sh index 70defdf65d..83e74514ff 100644 --- a/docs/static/setup.sh +++ b/docs/static/setup.sh @@ -38,7 +38,7 @@ echo "" echo "Keyboard Shield Selection:" prompt="Pick an keyboard:" -options=("Kyria" "Lily58" "Corne" "Splitreus62" "Sofle" "Iris") +options=("Kyria" "Lily58" "Corne" "Splitreus62" "Sofle" "Iris" "RoMac") PS3="$prompt " # TODO: Add support for "Other" and linking to docs on adding custom shields in user config repos. @@ -53,6 +53,7 @@ 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;; # Add link to docs on adding your own custom shield in your ZMK config! # $(( ${#options[@]}+1 )) ) echo "Other!"; break;; @@ -62,6 +63,10 @@ select opt in "${options[@]}" "Quit"; do esac done +if [ "$split" == "n" ]; then + repo_path="https://github.com/bmcgavin/zmk-config-template.git" +fi + read -e -p "Copy in the stock keymap for customization? [Yn]: " copy_keymap if [ -z "$copy_keymap" ] || [ "$copy_keymap" == "Y" ] || [ "$copy_keymap" == "y" ]; then copy_keymap="yes"; fi |