#!/bin/bash
#
#  If your spectrum conky does not show any bar movement,
#  use this script to test if there is a cava data stream.
#  There should be a stream of numbers flow over your screen!
#  If they are all zero's then there is something wrong with
#  the cava setup/config.
#

source "./settings.ini"
while :
do
   cat $cavaout
   sleep .03
done
