From 33013b286565f91f788c0a2e8080034e9be8a9d9 Mon Sep 17 00:00:00 2001 From: Sam Hadow Date: Thu, 26 Mar 2026 05:21:10 +0100 Subject: [PATCH] keycaps ortholinear generation script --- keycaps.sh => keycaps_ortholinear.sh | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) rename keycaps.sh => keycaps_ortholinear.sh (75%) diff --git a/keycaps.sh b/keycaps_ortholinear.sh similarity index 75% rename from keycaps.sh rename to keycaps_ortholinear.sh index b9775e1..1478d20 100755 --- a/keycaps.sh +++ b/keycaps_ortholinear.sh @@ -52,4 +52,23 @@ for label in "${labels3[@]}"; do ./xda_keycap.scad done +######################################## +# spacebar keycap +######################################## +echo "Generating: spacebar.stl" +openscad \ + -o "keycaps_stl/spacebar.stl" \ + ./spacebar_ortholinear.scad + +######################################## +# enter keycap +######################################## +echo "Generating: $label.stl" +openscad \ + -o "keycaps_stl/$label.stl" \ + -D "legend_char=\"Enter\"" \ + -D "legend_size=5" \ + -D "u_count_x=2" \ + ./xda_keycap.scad + echo "Done! Check the 'keycaps_stl' folder."