Handy Hack: Pass podcasts from Liferea to Rhythmbox
Posted by Alec The Geek on 18 July 2010
I’ve started using a plain RSS reader (Liferea) to subscribe to podcasts. It’s nice to have my feeds in one interface. I’ve written s small script to hand the RSS enclosures to Rhythmbox (just supply the name of the script when prompted by Liferea)
#!/bin/sh for i in "$@" ; do if test -f $i ; then /usr/bin/rhythmbox-client --play-uri=file://$(cd $(dirname $i) ; ls -1 $(pwd)/$(basename $i)) else /usr/bin/rhythmbox-client --play-uri=$i fi done
Suggestions for improvement welcome
3 Responses to “Handy Hack: Pass podcasts from Liferea to Rhythmbox”
Sorry, the comment form is closed at this time.

![[FSF Associate Member]](http://static.fsf.org/nosvn/associate/fsf-10505.png)
Lars Windolf said
Nice way of integration. Do you mind if I repost this in the Liferea blog?
Alec The Geek said
Go for your life. It’s CC licensed
Alec The Geek said
Actually you should test this 1st — I’m not sure if it still works as I no longer use desktop Linux