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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
|
{
"head0": {
"type": "header",
"description": "Settings for diskspace@schorschii"
},
"head1": {
"type": "header",
"description": "General"
},
"type": {
"type": "combobox",
"default": "filesystem",
"description": "Monitor a file system or RAM usage",
"tooltip": "Choose, if this desklet should show file system or RAM usage.",
"options": {
"Filesystem": "filesystem",
"RAM": "ram",
"Swap": "swap"
},
"value": "filesystem"
},
"filesystem": {
"type": "filechooser",
"default": "/",
"description": "Filesystem to monitor",
"tooltip": "Select the file system, which you want to monitor.",
"allow-none": true,
"select-dir": true,
"value": "/"
},
"onclick-action": {
"type": "combobox",
"default": "filemanager",
"description": "Action on mouse click",
"tooltip": "Choose what to do when the desklet was clicked.",
"options": {
"Open File Manager": "filemanager",
"Open Partition Manager": "partitionmanager",
"Open System Monitor": "sysmonitor",
"Nothing": "nothing"
},
"value": "filemanager"
},
"head2": {
"type": "header",
"description": "Visual"
},
"design": {
"type": "combobox",
"default": "thin",
"description": "Design",
"options": {
"Thin": "thin",
"Compact": "compact",
"Classic (Thick)": "classic"
},
"value": "thin"
},
"text-view": {
"type": "combobox",
"default": "used-size",
"description": "Text",
"options": {
"Name and total space": "name-size",
"Used and total space": "used-size",
"Total and used space": "size-used",
"Free and total space": "free-size",
"Total and free space": "size-free",
"No text": "none"
},
"value": "used-size"
},
"size-prefix": {
"type": "combobox",
"default": "binary",
"description": "Size Prefix",
"options": {
"Decimal": "decimal",
"Binary": "binary"
},
"value": "binary"
},
"hide-decorations": {
"type": "checkbox",
"description": "Hide decorations",
"default": false,
"value": false
},
"draw-free-space": {
"type": "checkbox",
"description": "Draw free/unused space (gray)",
"default": true,
"value": true
},
"use-own-circle-color": {
"type": "checkbox",
"default": false,
"description": "Use a custom circle color",
"value": false
},
"circle-color": {
"type": "colorchooser",
"default": "rgba(83,199,160,1.0)",
"description": "Circle color",
"dependency": "use-own-circle-color",
"value": "rgba(83,199,160,1.0)"
},
"text-color": {
"type": "colorchooser",
"default": "rgba(255,255,255,1.0)",
"description": "Text color",
"value": "rgba(255,255,255,1.0)"
},
"scale-size": {
"type": "spinbutton",
"default": 1,
"min": 0.4,
"max": 10,
"step": 0.2,
"units": "scale factor",
"description": "Desklet size",
"tooltip": "Increase or decrease the size of this desklet using this scale factor.",
"value": 1
},
"head3": {
"type": "header",
"description": "Custom desklet label (only visible if decorations are enabled)"
},
"use-custom-label": {
"type": "checkbox",
"default": false,
"description": "Use a custom desklet label",
"tooltip": "Checking this box allows you to set a custom label in the field below.",
"value": false
},
"custom-label": {
"type": "entry",
"default": "Filesystem /",
"description": "Custom desklet label",
"indent": true,
"dependency": "use-custom-label",
"tooltip": "Set your custom label here. This field is unavailable unless the checkbox above is enabled.",
"value": "Filesystem /"
},
"random-circle-color-generated": {
"type": "generic",
"default": false,
"value": true
},
"random-circle-color-r": {
"type": "generic",
"default": 1,
"value": 0.18888784063438713
},
"random-circle-color-g": {
"type": "generic",
"default": 1,
"value": 0.6031503814720539
},
"random-circle-color-b": {
"type": "generic",
"default": 1,
"value": 1
},
"__md5__": "f5a43280f94b41a7dd26dee7dd823a1e"
}
|