about summary refs log tree commit diff stats
path: root/hm/soispha/conf/yambar/scripts/grades-average
blob: 6359ce00dad79b5bc6b2afc62798dbd6c66959e8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#! /usr/bin/env dash

# shellcheck source=/dev/null
SHELL_LIBRARY_VERSION="1.10.0" . %SHELL_LIBRARY_PATH

while true; do
    grade="$(grades list average | awk '{print $2}')";

    echo "grade|string|$grade";
    echo "";

    sleep 1;
done

# vim: ft=sh