This is just an informative post in case someone else needs to do this. Marlin firmware for the Reprap has an auto bed leveling feature which can take a bit of time to finish. I didn't like having my printer heat up, then spend extra time at temp leveling the Z. As a workaround, I removed my leveling script from Starting G-Code and added this to post processing.
sed -i "0,/^M104/s/^M104.*/&\nG28 X0 Y0\nG29/" [output_filepath]
This finds the first instance of a line that begins with M104 and adds the following lines:
G28 X0 Y0
G29
M104 set the temp, the leveling scripts run, then M106 runs which waits for the temp to stabilize. With this I can probe more points on my bed without wasting any time. If anyone else wants to use this, just replace the part in bold and don't forget to add \n for a new line. Hopefully we'll get a separate box for this in the future.