summaryrefslogtreecommitdiff
path: root/Applications/System Software.app
diff options
context:
space:
mode:
Diffstat (limited to 'Applications/System Software.app')
-rw-r--r--Applications/System Software.app/Main.js20
1 files changed, 20 insertions, 0 deletions
diff --git a/Applications/System Software.app/Main.js b/Applications/System Software.app/Main.js
new file mode 100644
index 0000000..a45818c
--- /dev/null
+++ b/Applications/System Software.app/Main.js
@@ -0,0 +1,20 @@
+// noinspection JSUnresolvedVariable
+
+module.exports = () => {
+ Strawberry.App = "System Software";
+ Strawberry.MultiPanes = false;
+ Strawberry.Window = false;
+ Strawberry.Menus = []
+
+ Strawberry.StartLoad();
+ Strawberry.WhenLoaded = () => {
+ load("Strawberry.Dialog");
+ load("Strawberry.AppManager");
+
+ Strawberry.Audio.SystemSound("Strawberry.UI.Error");
+ Strawberry.Dialog.Confirm("This app is used internally by Strawberry OS and cannot be started.", "Close", "yellow");
+ Strawberry.Dialog.WhenConfirmed = () => {
+ Strawberry.AppManager.Quit();
+ };
+ }
+} \ No newline at end of file