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
|
// noinspection JSUnresolvedVariable
module.exports = () => {
Strawberry.App = "System Profiler";
Strawberry.MultiPanes = true;
Strawberry.Menus = [
"Quit"
]
Strawberry.WhenLoaded = () => {
load("Strawberry.Display");
load("Strawberry.Menubar");
}
Strawberry.Panes[0] = {
name: "System Software",
load: () => {}
}
Strawberry.Panes[1] = {
name: "Extensions",
load: () => {}
}
Strawberry.Panes[2] = {
name: "Diagnostics",
load: () => {}
}
Strawberry.Panes[3] = {
name: "Applications",
load: () => {}
}
Strawberry.Panes[4] = {
name: "Security and integrity",
load: () => {}
}
Strawberry.Panes[5] = {
name: "Physical and virtual memory",
load: () => {}
}
Strawberry.Panes[6] = {
name: "Processors and graphics",
load: () => {}
}
Strawberry.Panes[7] = {
name: "Applications",
load: () => {}
}
Strawberry.Panes[8] = {
name: "Disks",
load: () => {}
}
Strawberry.Panes[9] = {
name: "Startup",
load: () => {}
}
Strawberry.Panes[10] = {
name: "Network",
load: () => {}
}
Strawberry.Panes[11] = {
name: "Audio",
load: () => {}
}
Strawberry.Panes[12] = {
name: "Processes",
load: () => {}
}
Strawberry.StartLoad();
}
|