I’ve been bugged by the lack of Akregator integration in Firefox for a while, but was happy to find this script the other day which fixes the problem: Adding RSS feeds to Akregator using Firefox on KDE 4.x | littlEpiphany.
Unfortunately, the script doesn’t seem to work with podcast feeds (for example this one here: Le mot du jour). Does anyone happen to know why, and how to fix it?
Script:
#!/bin/bash
if -z `/sbin/pidof akregator`]
then
# echo "starting... " >> /tmp/akregator-rss-subscribe.log
akregator
fi
for f in "${@/feed/http}"; do
# echo "$f" >> /tmp/akregator-rss-subscribe.log
# dcop akregator AkregatorIface addFeedsToGroup "" "$f" "]" "Firefox Subscribe"
qdbus org.kde.akregator /Akregator org.kde.akregator.part.addFeedsToGroup "$f" "Imported feeds"
done