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.
The Ultimaker Cura application stores settings and profiles in the following locations:
/Users/${USER}/Library/Application\ Support/cura/
First time creating a backup, you need to copy the entire folder to your Dropbox folder.
cp -R /Users/${USER}/Library/Application\ Support/cura/ /Users/${USER}/Dropbox/SettingsConfigs/cura/
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.
rm -rf /Users/${USER}/Library/Application\ Support/cura/
ln -s /Users/${USER}/Dropbox/SettingsConfigs/cura/ /Users/${USER}/Library/Application\ Support/cura
Start GCode
START_PRINT BED_TEMP={material_bed_temperature_layer_0} EXTRUDER_TEMP={material_print_temperature_layer_0}
End GCode
END_PRINT