On screen display using defined text and repeats it

This commit is contained in:
Nico Schottelius 2007-06-06 11:42:10 +02:00
parent 72ae8997f4
commit b7a34a3429
1 changed files with 9 additions and 0 deletions

9
werbeosd.sh Executable file
View File

@ -0,0 +1,9 @@
file=wordlist
while true; do
while read satz; do
echo "$satz" | osd_cat -p middle -A center -f '-misc-fixed-medium-r-semicondensed--*-542-*-*-c-*-*-*' -d 1
sleep 23
done < "$file"
done