summaryrefslogtreecommitdiff
path: root/Library/SystemSoftware.js
diff options
context:
space:
mode:
Diffstat (limited to 'Library/SystemSoftware.js')
-rw-r--r--Library/SystemSoftware.js9
1 files changed, 8 insertions, 1 deletions
diff --git a/Library/SystemSoftware.js b/Library/SystemSoftware.js
index 6737410..471ea26 100644
--- a/Library/SystemSoftware.js
+++ b/Library/SystemSoftware.js
@@ -69,6 +69,12 @@ global._STRAWBERRY_SYSTEMSOFTWARE_INIT = () => {
}, 1000)
}
+ Strawberry.MenuAction[3] = () => {
+ setTimeout(() => {
+ Strawberry.AppManager.Start(global._STRAWBERRY_SYSTEM_ROOT + "/Applications/Debugger.app");
+ }, 200)
+ }
+
Strawberry.DisplayRaw.Write(color.bold.underline("Strawberry OS " + Strawberry.SystemInfo.Version()), 5, 3)
Strawberry.DisplayRaw.Write(Math.round(Strawberry.SystemInfo.GetHardwareMemory().Total / 1024) + "K memory", 5, 4)
Strawberry.DisplayRaw.Write(Strawberry.SystemInfo.GetProcessors().Count + " processors", 5, 5)
@@ -91,4 +97,5 @@ global._STRAWBERRY_SYSTEMSOFTWARE_INIT = () => {
initialized = true;
}
-global._STRAWBERRY_SYSTEMSOFTWARE_INIT(); \ No newline at end of file
+global._STRAWBERRY_SYSTEMSOFTWARE_INIT();
+require("./CrashHandler"); \ No newline at end of file