Remove debug statements from KCal backends.
[beagle.git] / tools / beagle-status
blob74069f1cdb2d34ae779e9938f5d9890f98bc20b4
1 #!/bin/sh
3 # This line will be automatically uncommented when you "make install"
4 #installed=1
6 if [ -z $installed ]; then
7 CMD="./beagle-info"
8 else
9 CMD="beagle-info"
12 while [ 1 ]; do
13 str=`$CMD --status | head -n 20`
14 clear
15 echo "$str"
16 # beagle-info causes a CPU spike, keep the hammering low
17 sleep 5
18 done