// 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(); }