poshlostios/sys/const.js
MeexReay 0abc5e28cb add disk size to neofetch
add local repository to ppm
add MAX_STORAGE constant
lighttpd config
add getFileSystemSize function to fs.js
2025-05-23 18:54:18 +03:00

14 lines
330 B
JavaScript

const MAX_STORAGE = 5120 * 1024 // Limit of local storage size, 5120 KB by default
const APP_REPOSITORY = "app" // Repository url to download apps from
const DEFAULT_APPS = [
"posh", // required
"hello",
"ppm",
"putils",
"reset",
"vget",
"kfc",
"woman"
]
const STARTUP_COMMAND = [ "/app/posh.js" ]