sleeplog format update
[mirrors/Programs.git] / c / goertzel / sleepplot.sh
index 0e8ed5eef79f0beb99379187a905f1e2100ecb91..ea0bac2ac296b138c7aedc24b22e46826723b3d4 100755 (executable)
@@ -10,11 +10,11 @@ graphout="${in%%.*}.png"
 test -n "$2" && graphout="$2";
 
 #Last state
-last="$(tail -n 1 "$in" | cut -d ' ' -f 4)"
+last="$(tail -n 1 "$in" | cut -d ' ' -f 5)"
 test "$last" -gt 0 && last="motion" || last="peace";
 
 #Approximate size of graph
-size="$(tail -n 1 "$in" | cut -d . -f 1)"
+size="$(tail -n 1 "$in" | cut -d . -f 1 | sed -e 's/^0*//' | tee /tmp/lol)"
 test $size -gt 3600 && size="$(( $size/10 ))" #For prolonged periods
 size="$(( 600 + $size ))"
 
This page took 0.09683 seconds and 4 git commands to generate.