blob: 6814263d8775a594614a7fd95e8bc60d8342420d (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
 | Plasma Applet Template
----------------------
-- Build instructions --
cd /where/your/applet/is/generated
mkdir build
cd build
cmake -DCMAKE_INSTALL_PREFIX=MYPREFIX .. 
make 
make install
(MYPREFIX is where you install your Plasma setup, replace it accordingly)
Restart plasma to load the applet 
(in a terminal type: 
kquitapp plasmashell 
and then
plasmashell)
or view it with 
plasmoidviewer -a YourAppletName
-- Tutorials and resources --
The explanation of the template
http://techbase.kde.org/index.php?title=Development/Tutorials/Plasma/GettingStarted
Plasma techbase pages
http://techbase.kde.org/Projects/Plasma
Plasma QML API explained
http://techbase.kde.org/Development/Tutorials/Plasma/QML/API
 |