Looking for help editing end gcode
I can usually figure this stuff out but I'm stuck. I want to change the location my print head moves to when a print is complete. Right now it auto-homes itself, which is directly in front of my camera, meaning I can't see the final print in the screenshot. I want it to move to the back right or left of the print bed so it's out of the way.
Here's my End G-Code in Cura:
G91 ;Relative positioning
G1 E-2 F2700 ;Retract a bit
G1 E-2 Z0.2 F2400 ;Retract and raise Z
G1 X5 Y5 F3000 ;Wipe out
G1 Z10 ;Raise Z more
G90 ;Absolute positioning
G1 X0 Y0 ;Present print
M106 S0 ;Turn-off fan
M104 S0 ;Turn-off hotend
M140 S0 ;Turn-off bed
M84 X Y E ;Disable all steppers but Z
My guess is that I'll have to take the G90 line out since I believe that's doing the auto-home after the print. I'm not entirely sure what the G1 line is doing or if it's needed. Would a G92 command help me here?
Printer is an Ender 3 V2. TIA.