Files
keyboard_scad/keyboard60_ortholinear.sh
T
2026-03-26 08:38:55 +01:00

31 lines
751 B
Bash
Executable File

#!/bin/bash
mkdir -p keyboard60_ortholinear_stl
echo "Generating: case_left.stl"
openscad \
-o "keyboard60_ortholinear_stl/case_left.stl" \
-D "render_part=\"left\"" \
./case.scad
echo "Generating: case_right.stl"
openscad \
-o "keyboard60_ortholinear_stl/case_right.stl" \
-D "render_part=\"right\"" \
./case.scad
echo "Generating: backplate_left.stl"
openscad \
-o "keyboard60_ortholinear_stl/backplate_left.stl" \
-D "render_part=\"left\"" \
./backplate_ortholinear.scad
echo "Generating: backplate_right.stl"
openscad \
-o "keyboard60_ortholinear_stl/backplate_right.stl" \
-D "render_part=\"right\"" \
./backplate_ortholinear.scad
echo "Done! Check the 'keyboard60_ortholinear_stl' folder."