added default apps

This commit is contained in:
2026-01-02 12:02:14 -08:00
parent fe094f1dfe
commit d9158c25cf
4 changed files with 51 additions and 3 deletions

View File

@@ -12,7 +12,9 @@ local exceptions = {
["/scan.dat"] = true,
["scan.dat"] = true,
["/.gitignore"] = true,
[".gitignore"] = true
[".gitignore"] = true,
["/default_apps"] = true,
["default_apps"] = true
}
local function scan(dir)
local out = {}
@@ -78,7 +80,10 @@ for _,i in ipairs(filesystem.files) do
download_to(i)
end
shell.run("wget run https://raw.githubusercontent.com/Pyroxenium/Basalt2/main/install.lua -f /global-libraries/basalt.lua")]]
shell.run("wget run https://raw.githubusercontent.com/Pyroxenium/Basalt2/main/install.lua -f /global-libraries/basalt.lua")
dofile("/startup/01_repo.lua")
repo.installApp("https://git.cadencoaster.com/Rivulet/ccphone/raw/branch/main/default_apps/Launcher.app")
repo.installApp("https://git.cadencoaster.com/Rivulet/ccphone/raw/branch/main/default_apps/Software.app")]]
local outfile = fs.open("install.lua","w")
outfile.write(firstpart..textdata..secondpart)
outfile.close()