summaryrefslogtreecommitdiff
path: root/scripts/temperaturescript.sh
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/temperaturescript.sh')
-rwxr-xr-xscripts/temperaturescript.sh20
1 files changed, 20 insertions, 0 deletions
diff --git a/scripts/temperaturescript.sh b/scripts/temperaturescript.sh
new file mode 100755
index 0000000..df13b38
--- /dev/null
+++ b/scripts/temperaturescript.sh
@@ -0,0 +1,20 @@
+#!/bin/bash
+#script to fetch latest temperature graph and resize it.
+
+
+URL="http://taifun.local.sublab.org/temperature/temp-2hour.png"
+WEBPATH=../
+
+wget ${URL} -O ${WEBPATH}/public/img/buffer.tempgraph.png &> /dev/null || exit 1
+
+cp ${WEBPATH}/public/img/buffer.tempgraph.png ${WEBPATH}/public/img/buffer.thumb.tempgraph.png
+
+mogrify -crop 800x400+70+41 -contrast-stretch 0 -resize 200x50 -contrast-stretch 0 ${WEBPATH}/public/img/buffer.thumb.tempgraph.png
+
+mv -f ${WEBPATH}/public/img/buffer.tempgraph.png ${WEBPATH}/public/img/tempgraph.png &> /dev/null
+
+mv -f ${WEBPATH}/public/img/buffer.thumb.tempgraph.png ${WEBPATH}/public/img/thumb.tempgraph.png &> /dev/null
+
+
+
+