repo.or.cz
/
beagle.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Remove debug statements from KCal backends.
[beagle.git]
/
tools
/
beagle-status
blob
74069f1cdb2d34ae779e9938f5d9890f98bc20b4
1
#!/bin/sh
2
3
# This line will be automatically uncommented when you "make install"
4
#installed=1
5
6
if
[
-z
$installed
];
then
7
CMD
=
"./beagle-info"
8
else
9
CMD
=
"beagle-info"
10
fi
11
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