Changeset 762

Show
Ignore:
Timestamp:
09/03/08 07:16:37 (3 months ago)
Author:
free
Message:

. added RainRadio? configuration script for rhythmbox

Location:
cdd-utils/trunk
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • cdd-utils/trunk/debian/changelog

    r757 r762  
    1 cdd-utils (0.12.18) 64studio; urgency=low 
     1cdd-utils (0.12.19) 64studio; urgency=low 
    22 
    33  * [lib]: 
     
    2424     - sound 
    2525        . fix missing gnash plugin 
     26        . added RainRadio configuration script for rhythmbox 
    2627  * [bin] 
    2728     - qjackctl-wrapper: hide qjack's main window at startup 
  • cdd-utils/trunk/lib/sound.sh

    r757 r762  
    110110    ln -s $cfg $lnk 
    111111} 
     112 
     113# Description: add rainradio to the radio list 
     114# Depends: 
     115rainradio () { 
     116 
     117    cfg=/usr/lib/rhythmbox/plugins/iradio/iradio-initial.pls  
     118    if ! exists $cfg; then warning $cfg not found; return; fi 
     119 
     120    # Exist if added 
     121    if grep -q RainRadio $cfg; then return; fi 
     122 
     123    cat << EOF >> $cfg 
     124file18=http://rainradio.org:8000/indamixx.mp3.m3u 
     125title18=RainRadio.org Indamixx demo stream 
     126genre18=Dance 
     127EOF 
     128}