My Marlin configs for Fabrikator Mini and CTC i3 Pro B
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

use_example_configs 496B

123456789101112131415
  1. #!/usr/bin/env bash
  2. restore_configs
  3. EXAMPLES="https://raw.githubusercontent.com/MarlinFirmware/Configurations/bugfix-2.0.x/config/examples"
  4. cd Marlin
  5. wget -q "$EXAMPLES/$@/Configuration.h" -O wgot && mv wgot Configuration.h
  6. wget -q "$EXAMPLES/$@/Configuration_adv.h" -O wgot && mv wgot Configuration_adv.h
  7. wget -q "$EXAMPLES/$@/_Bootscreen.h" -O wgot && mv wgot _Bootscreen.h
  8. wget -q "$EXAMPLES/$@/_Statusscreen.h" -O wgot && mv wgot _Statusscreen.h
  9. rm -f wgot
  10. cd - >/dev/null