diff options
author | Ken Moore <ken@pcbsd.org> | 2014-11-04 12:06:37 -0500 |
---|---|---|
committer | Ken Moore <ken@pcbsd.org> | 2014-11-04 12:06:37 -0500 |
commit | 43240f0e12b7fcbe4e2e9201b251e281cfa5d2bb (patch) | |
tree | aca8679161d7d31f3f29461e9252de350acdbbcb /lumina-config | |
parent | Add a new desktop plugin: desktopview (diff) | |
download | lumina-43240f0e12b7fcbe4e2e9201b251e281cfa5d2bb.tar.gz lumina-43240f0e12b7fcbe4e2e9201b251e281cfa5d2bb.tar.bz2 lumina-43240f0e12b7fcbe4e2e9201b251e281cfa5d2bb.zip |
Add a new desktop plugin: notepad
This is a plugin for taking/saving simple text notes right on your desktop.
Diffstat (limited 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 ae936b7b..a257a690 100644 --- a/lumina-config/LPlugins.cpp +++ b/lumina-config/LPlugins.cpp @@ -140,6 +140,13 @@ void LPlugins::LoadDesktopPlugins(){ info.ID = "desktopview"; info.icon = "preferences-desktop-icons"; DESKTOP.insert(info.ID, info); + //Notepad Plugin + info = LPI(); //clear it + info.name = QObject::tr("Note Pad"); + info.description = QObject::tr("Keep simple text notes on your desktop"); + info.ID = "notepad"; + info.icon = "text-enriched"; + DESKTOP.insert(info.ID, info); } void LPlugins::LoadMenuPlugins(){ |