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
|
{
"id" : "applet-child",
"type" : "ClutterGroup",
"visible" : true,
"children":
[
{ "id" : "label-temp",
"type" : "ClutterLabel",
"x" : "1%",
"y" : "12%",
"width" : "9%",
"text" : "Tuesday",
"font-name" : "Sans 10px",
"color" : "white",
"alignment" : "left",
"wrap" : false,
"ellipsize" : "none",
"visible" : true
},
{
"id" : "cloud",
"type" : "ClutterTexture",
"x" : "1%",
"y" : 0,
"width" : "7%",
"height" : "10%",
"pixbuf" : "cal.png",
"visible" : true
}
],
}
|