diff options
author | Minteck <contact@minteck.org> | 2022-07-03 14:23:25 +0200 |
---|---|---|
committer | Minteck <contact@minteck.org> | 2022-07-03 14:23:25 +0200 |
commit | d25bdc9f3f3f6547d6c023ed7e192fc5913e9bbc (patch) | |
tree | a8e538a8e32b66fece6a10c198fe700866d1e233 /Applications/Application Launcher.app/Main.js | |
download | strawberry-os-d25bdc9f3f3f6547d6c023ed7e192fc5913e9bbc.tar.gz strawberry-os-d25bdc9f3f3f6547d6c023ed7e192fc5913e9bbc.tar.bz2 strawberry-os-d25bdc9f3f3f6547d6c023ed7e192fc5913e9bbc.zip |
Initial commit
Diffstat (limited to 'Applications/Application Launcher.app/Main.js')
-rw-r--r-- | Applications/Application Launcher.app/Main.js | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/Applications/Application Launcher.app/Main.js b/Applications/Application Launcher.app/Main.js new file mode 100644 index 0000000..dc05458 --- /dev/null +++ b/Applications/Application Launcher.app/Main.js @@ -0,0 +1,20 @@ +// noinspection JSUnresolvedVariable + +module.exports = () => { + Strawberry.App = "Application Launcher"; + 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 |