From 3e064be8020ed1eccc5cddcac5ab355320ebccb5 Mon Sep 17 00:00:00 2001 From: Minteck Date: Thu, 7 Jul 2022 11:06:12 +0200 Subject: m. working on features scoots doesn't want to work on --- Library/SystemSoftware.js | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'Library/SystemSoftware.js') 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 -- cgit