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 /Library/SystemSoftware.js | |
parent | 0e9f2dc57e9df8fbc5a5da6d68d1268278aa4129 (diff) | |
download | strawberry-os-mane.tar.gz strawberry-os-mane.tar.bz2 strawberry-os-mane.zip |
Diffstat (limited to 'Library/SystemSoftware.js')
-rw-r--r-- | Library/SystemSoftware.js | 9 |
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 |