diff options
author | Minteck <contact@minteck.org> | 2022-07-07 11:06:12 +0200 |
---|---|---|
committer | Minteck <contact@minteck.org> | 2022-07-07 11:06:12 +0200 |
commit | 3e064be8020ed1eccc5cddcac5ab355320ebccb5 (patch) | |
tree | 37ca0fa0141b5600955ce5d001a4c7a7745902a0 /Applications/System Profiler.app | |
parent | 0e9f2dc57e9df8fbc5a5da6d68d1268278aa4129 (diff) | |
download | strawberry-os-3e064be8020ed1eccc5cddcac5ab355320ebccb5.tar.gz strawberry-os-3e064be8020ed1eccc5cddcac5ab355320ebccb5.tar.bz2 strawberry-os-3e064be8020ed1eccc5cddcac5ab355320ebccb5.zip |
Diffstat (limited to 'Applications/System Profiler.app')
-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 |