diff options
Diffstat (limited to 'Applications/System Profiler.app/Main.js')
-rw-r--r-- | Applications/System Profiler.app/Main.js | 81 |
1 files changed, 81 insertions, 0 deletions
diff --git a/Applications/System Profiler.app/Main.js b/Applications/System Profiler.app/Main.js new file mode 100644 index 0000000..563ed01 --- /dev/null +++ b/Applications/System Profiler.app/Main.js @@ -0,0 +1,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(); +}
\ No newline at end of file |