1
0
Fork 0
trans.fail_xenotopic.network/run/processing-runsketch.sh

15 lines
240 B
Bash
Executable File

#!/bin/bash
if [[ -z $1 ]]; then
echo "error. no argument."
echo "need the sketch path"
else
export DISPLAY=":0"
~/.local/src/processing/processing/processing-java \
--force \
--sketch=$1 \
--run \
--output=$1/output
fi