From 4982f946bd95b03eadea962d515d161e26e5732a Mon Sep 17 00:00:00 2001 From: Ken Moore Date: Wed, 21 Jan 2015 09:27:36 -0500 Subject: Add the new appmenu (Start Menu) plugin to lumina-config. --- lumina-config/LPlugins.cpp | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/lumina-config/LPlugins.cpp b/lumina-config/LPlugins.cpp index 91e525db..55a5ee9e 100644 --- a/lumina-config/LPlugins.cpp +++ b/lumina-config/LPlugins.cpp @@ -134,6 +134,13 @@ void LPlugins::LoadPanelPlugins(){ info.description = QObject::tr("Hide all open windows and show the desktop"); info.ID = "homebutton"; info.icon = "go-home"; + PANEL.insert(info.ID, info); + //Desktop Bar + info = LPI(); //clear it + info.name = QObject::tr("Start Menu"); + info.description = QObject::tr("This provides instant-access to application that are installed on the system."); + info.ID = "appmenu"; + info.icon = "Lumina-DE"; PANEL.insert(info.ID, info); } -- cgit