diff --git a/config.default.json b/config.default.json index 9e39fd7c..5e7ea926 100644 --- a/config.default.json +++ b/config.default.json @@ -14,12 +14,7 @@ ], "defaultsettings": { "use-sw-cache": true, - "applist": [ - "anura.browser", - "anura.settings", - "anura.fsapp", - "anura.term" - ], + "applist": ["anura.browser", "anura.settings", "anura.fsapp"], "clampWindows": true, "launcher-keybind": true, "relay-url": "wss://relay.widgetry.org/" diff --git a/src/oobe/OobeView.tsx b/src/oobe/OobeView.tsx index 8197fb8f..e0362997 100644 --- a/src/oobe/OobeView.tsx +++ b/src/oobe/OobeView.tsx @@ -123,6 +123,10 @@ class OobeView { on:click={() => { anura.settings.set("x86-disabled", false); anura.settings.set("x86-image", "alpine"); + anura.settings.set("applist", [ + ...anura.settings.get("applist"), + "anura.term", + ]); this.nextStep(); }} > @@ -133,6 +137,10 @@ class OobeView { on:click={() => { anura.settings.set("x86-disabled", false); anura.settings.set("x86-image", "debian"); + anura.settings.set("applist", [ + ...anura.settings.get("applist"), + "anura.term", + ]); this.nextStep(); }} > @@ -143,6 +151,10 @@ class OobeView { on:click={() => { anura.settings.set("x86-disabled", false); anura.settings.set("x86-image", "arch"); + anura.settings.set("applist", [ + ...anura.settings.get("applist"), + "anura.term", + ]); this.nextStep(); }} > @@ -152,6 +164,10 @@ class OobeView {