Created
May 10, 2015 00:38
-
-
Save EvergreenTheTree/b1599be1fa2aa9136843 to your computer and use it in GitHub Desktop.
Script to make firefox play nicely with akregator
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
if [ -z "$(/sbin/pidof akregator)" ] | |
then | |
akregator | |
fi | |
for f in "${@/feed/http}"; do | |
qdbus org.kde.akregator /Akregator \ | |
org.kde.akregator.part.addFeedsToGroup "$f" "Imported" | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment