My Marlin configs for Fabrikator Mini and CTC i3 Pro B
Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
12345678910111213141516171819 |
- #!/usr/bin/env bash
-
- restore_configs
-
- if [ -f "config/examples/$@/Configuration.h" ]; then
- cp "config/examples/$@/Configuration.h" Marlin/
- fi
-
- if [ -f "config/examples/$@/Configuration_adv.h" ]; then
- cp "config/examples/$@/Configuration_adv.h" Marlin/
- fi
-
- if [ -f "config/examples/$@/_Bootscreen.h" ]; then
- cp "config/examples/$@/_Bootscreen.h" Marlin/
- fi
-
- if [ -f "config/examples/$@/_Statusscreen.h" ]; then
- cp "config/examples/$@/_Statusscreen.h" Marlin/
- fi
|