https://github.com/fire1ce/ultimaker-cura-configs
https://github.com/fire1ce/ultimaker-cura-configs
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/fire1ce/ultimaker-cura-configs
- Owner: fire1ce
- Created: 2023-01-20T15:02:01.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-01-20T15:55:18.000Z (over 3 years ago)
- Last Synced: 2025-02-26T17:16:41.351Z (over 1 year ago)
- Language: Rich Text Format
- Size: 51.8 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ultimaker-cura-configs
## App Shortcut
Cura.app is a shortcut to the Ultimaker Cura application. It is located in the Applications folder.
copy the Cura.app to your Applications folder and you can launch it from there.
## Persist Settings and Profiles with Dropbox
The Ultimaker Cura application stores settings and profiles in the following locations:
```shell
/Users/${USER}/Library/Application\ Support/cura/
```
### Initial (first time) Backup Setup
First time creating a backup, you need to copy the entire folder to your Dropbox folder.
```shell
cp -R /Users/${USER}/Library/Application\ Support/cura/ /Users/${USER}/Dropbox/SettingsConfigs/cura/
```
### Linking Dropbox to Cura (restore settings and profiles)
For fresh install we want to link the Dropbox's Cura settings folder to the Cura application's settings folder.
first, we need to remove the Cura application's settings folder. Then create a symbolic link to the Dropbox's Cura settings folder.
```shell
rm -rf /Users/${USER}/Library/Application\ Support/cura/
ln -s /Users/${USER}/Dropbox/SettingsConfigs/cura/ /Users/${USER}/Library/Application\ Support/cura
```
## Cura Settings & Klipper
Start GCode
```gcode
START_PRINT BED_TEMP={material_bed_temperature_layer_0} EXTRUDER_TEMP={material_print_temperature_layer_0}
```
End GCode
```gcode
END_PRINT
```