about summary refs log blame commit diff stats
path: root/home-manager/config/yambar/scripts/grades-average
blob: 20de5684f296c70c035c8ad28673f9d03f248f0d (plain) (tree)
1
2
3
4
5
6
7
                    
 
                             
                                                   
 
              
                                                      




                               
 
            
#! /usr/bin/env dash

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

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

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

    sleep 1;
done

# vim: ft=sh