aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/core-utils/lumina-config/LPlugins.cpp
diff options
context:
space:
mode:
authorKen Moore <moorekou@gmail.com>2016-06-02 14:00:02 -0400
committerKen Moore <moorekou@gmail.com>2016-06-02 14:00:02 -0400
commitb8ae4def83a0dcf747f3fd9a7e3a498e92b26659 (patch)
treea551b25495bb153083d0a3da0fda21482db5a5e7 /src-qt5/core-utils/lumina-config/LPlugins.cpp
parentA couple minor tweaks to the new RSS stuff. Fix the URL for the PC-BSD blog a... (diff)
downloadlumina-b8ae4def83a0dcf747f3fd9a7e3a498e92b26659.tar.gz
lumina-b8ae4def83a0dcf747f3fd9a7e3a498e92b26659.tar.bz2
lumina-b8ae4def83a0dcf747f3fd9a7e3a498e92b26659.zip
Add the new RSS reader to the known plugins in lumina-config.
Diffstat (limited to 'src-qt5/core-utils/lumina-config/LPlugins.cpp')
-rw-r--r--src-qt5/core-utils/lumina-config/LPlugins.cpp9
1 files changed, 8 insertions, 1 deletions
diff --git a/src-qt5/core-utils/lumina-config/LPlugins.cpp b/src-qt5/core-utils/lumina-config/LPlugins.cpp
index 629171e1..2a08a4ad 100644
--- a/src-qt5/core-utils/lumina-config/LPlugins.cpp
+++ b/src-qt5/core-utils/lumina-config/LPlugins.cpp
@@ -211,6 +211,13 @@ void LPlugins::LoadDesktopPlugins(){
info.ID = "systemmonitor";
info.icon = "cpu";
DESKTOP.insert(info.ID, info);
+ //RSS Reader Plugin
+ info = LPI(); //clear it
+ info.name = QObject::tr("RSS Reader");
+ info.description = QObject::tr("Monitor RSS Feeds (Requires internet connection)");
+ info.ID = "rssfeeder";
+ info.icon = "application-rss+xml";
+ DESKTOP.insert(info.ID, info);
//Available QtQuick scripts
/*QStringList quickID = LUtils::listQuickPlugins();
for(int i=0; i<quickID.length(); i++){
@@ -358,4 +365,4 @@ void LPlugins::LoadColorItems(){
info.description = QObject::tr("Color used for highlighting an item (more subdued).");
info.ID = "HIGHLIGHTDISABLECOLOR";
COLORS.insert(info.ID, info);
-} \ No newline at end of file
+}
bgstack15