From 6b97b41b4eb02fa57a6f552f0775b36339661223 Mon Sep 17 00:00:00 2001 From: Nova deViator Date: Tue, 5 Jan 2016 15:51:17 +0100 Subject: [PATCH] doc/README.md --- doc/README.md | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/doc/README.md b/doc/README.md index 5d73533..f9286e6 100644 --- a/doc/README.md +++ b/doc/README.md @@ -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 + +```