doc/README.md

master
Nova deViator 2016-01-05 15:51:17 +01:00
parent c6262bfeaf
commit 6b97b41b4e
1 changed files with 11 additions and 6 deletions

View File

@ -33,8 +33,8 @@ See an example xorg.conf
Processing applet is run remotely by using two small bash scripts:
* processing-runsketch.sh *:
```
*processing-runsketch.sh*:
```bash
#!/bin/bash
if [[ -z $1 ]]; then
echo "error. no argument."
@ -48,12 +48,15 @@ export DISPLAY=":0"
--run \
--output=$1/output
fi```
fi
```
and
* processing-runsketch_IF3.sh *:
```#!/bin/bash
*processing-runsketch_IF3.sh*:
```bash
#!/bin/bash
while (true)
do
# clear
@ -61,7 +64,9 @@ do
echo
echo "~~~ Program has quit. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - "
echo
done```
done
```