--- /dev/null
+#!/bin/bash
+
+if [ -f /tmp/temp.txt ]; then
+ sudo rm /tmp/temp.txt;
+fi
+
+echo -e "Uwaga! W serwerownii temperatura powietrza wynosi: \
+$(echo "$(cat /sys/bus/w1/devices/28-0316850291ff/temperature) / 1000" \
+| bc -l \
+| cut -c 1-6) oC.\nTa wiadomosc zostala wygenerowana automatycznie prosze na nia nie odpowiadac." | sudo tee /tmp/temp.txt > /dev/null 2>&1;
+
+RECV=""
+sudo mmcli -s $(basename $(sudo mmcli -m 0 --messaging-create-sms="number=\"${RECV}\"" --messaging-create-sms-with-data=/tmp/temp.txt | cut -d ":" -f 2)) --send;
--- /dev/null
+#!/bin/bash
+
+MAX_TEMP=
+
+currentTemp=$(cat /sys/bus/w1/devices/28-0316850291ff/temperature);
+if [ $currentTemp -ge $MAX_TEMP ]; then
+ /usr/local/bin/send-temperature-alert > /dev/null 2>&1;
+fi