# Start up export file with processing on raspberry pi 3

**URL:** https://discourse.processing.org/t/start-up-export-file-with-processing-on-raspberry-pi-3/10040
**Category:** Processing for Pi
**Created:** [April 7, 2019, 3:36am UTC](https://discourse.processing.org/t/start-up-export-file-with-processing-on-raspberry-pi-3/10040 "2019-04-07T03:36:00Z")
**Posts on this page:** 1
**Showing post:** 10

<div class="post-metadata">

### Author: ![kll](https://yyz2.discourse-cdn.com/flex036/user_avatar/discourse.processing.org/kll/32/964_2.png) [@kll](https://discourse.processing.org/u/kll)
#### Post date: [April 7, 2019, 3:36pm UTC](https://discourse.processing.org/t/start-up-export-file-with-processing-on-raspberry-pi-3/10040/10 "2019-04-07T15:36:12Z")

</div>

ok, now i know the filename.  
so you make your bash file

> nano /home/pi/.config/autostart/start\_processing

with this content:

```auto
#!/bin/bash
# /home/pi/.config/autostart/start_processing
# this will not do anything unless called by a .desktop file

echo '10s'
env sleep 5
echo '5s'
env sleep 5
#...

cd /home/pi/Desktop/application.linux-armv6hf/
bash combine_horizontal_and_vertical

# wait for operator to close window
read -p "press enter to close terminal window"

```

make it executable

```auto
chmod +x /home/pi/.config/autostart/start_processing

```

and test it

* * *

if the test works you can test the desktop file

> /home/pi/.config/autostart/myautostart.desktop

also with double click

---

_[View the full topic](https://discourse.processing.org/t/start-up-export-file-with-processing-on-raspberry-pi-3/10040)._
