diff options
author | Ken Moore <ken@pcbsd.org> | 2015-01-21 09:27:36 -0500 |
---|---|---|
committer | Ken Moore <ken@pcbsd.org> | 2015-01-21 09:27:36 -0500 |
commit | 4982f946bd95b03eadea962d515d161e26e5732a (patch) | |
tree | 81092cddb25b203f19fc87f14886eec76dee9c9e | |
parent | Add a new panel-plugin: appmenu (diff) | |
download | lumina-4982f946bd95b03eadea962d515d161e26e5732a.tar.gz lumina-4982f946bd95b03eadea962d515d161e26e5732a.tar.bz2 lumina-4982f946bd95b03eadea962d515d161e26e5732a.zip |
Add the new appmenu (Start Menu) plugin to lumina-config.
-rw-r--r-- | lumina-config/LPlugins.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
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); } |