keycaps ortholinear generation script

This commit is contained in:
Sam Hadow
2026-03-26 05:21:10 +01:00
parent 031d72aba3
commit 33013b2865
+19
View File
@@ -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."