Changeset 762
- Timestamp:
- 09/03/08 07:16:37 (3 months ago)
- Location:
- cdd-utils/trunk
- Files:
-
- 2 modified
-
debian/changelog (modified) (2 diffs)
-
lib/sound.sh (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
cdd-utils/trunk/debian/changelog
r757 r762 1 cdd-utils (0.12.1 8) 64studio; urgency=low1 cdd-utils (0.12.19) 64studio; urgency=low 2 2 3 3 * [lib]: … … 24 24 - sound 25 25 . fix missing gnash plugin 26 . added RainRadio configuration script for rhythmbox 26 27 * [bin] 27 28 - qjackctl-wrapper: hide qjack's main window at startup -
cdd-utils/trunk/lib/sound.sh
r757 r762 110 110 ln -s $cfg $lnk 111 111 } 112 113 # Description: add rainradio to the radio list 114 # Depends: 115 rainradio () { 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 124 file18=http://rainradio.org:8000/indamixx.mp3.m3u 125 title18=RainRadio.org Indamixx demo stream 126 genre18=Dance 127 EOF 128 }
