summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xmarkdown_preview.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/markdown_preview.sh b/markdown_preview.sh
index aa066d1..3327dda 100755
--- a/markdown_preview.sh
+++ b/markdown_preview.sh
@@ -2,6 +2,7 @@
#Variables
RUN=0
+SLEEP=1
file -E $1 > /dev/null 2>&1
@@ -24,7 +25,7 @@ while [ $RUN -eq 0 ]; do
LAST_MOD=`stat $1 --printf=%Y`
pandoc -f markdown -t pdf -o /tmp/preview.pdf $1
fi
- sleep 5
+ sleep $SLEEP
RUN=$(ps --pid $PID; echo $?)
RUN=$(echo $RUN | rev | cut -c 1)
done