We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi again!
Is there any way to put somewhere some default config file instead of using switches?
Regards!
The text was updated successfully, but these errors were encountered:
No. But you can use --config=filename.
Sorry, something went wrong.
You probably want to make a short shell script with your configuration.
Example:
#!/bin/bash set -e svg="$1" gcode="${svg%.svg}.gcode" python "$(dirname "$0")/gcodeplot/gcodeplot.py" \ --work-z=0.9 \ --lift-delta=0.6 \ --safe-delta-z=3 \ --z-speed=45 \ --pens=pens.txt \ "$svg" \ > "$gcode.tmp" # This avoids overwriting the gcode file if the script fails mv "$gcode.tmp" "$gcode" echo "Wrote gcode file: $gcode"
Save that as convert.sh, update the path to where you have gcodeplot downloaded, and then run bash convert.sh yourfile.svg.
convert.sh
gcodeplot
bash convert.sh yourfile.svg
No branches or pull requests
Hi again!
Is there any way to put somewhere some default config file instead of using switches?
Regards!
The text was updated successfully, but these errors were encountered: