├── .gitattributes ├── .github ├── dependabot.yml └── workflows │ ├── go.yml │ └── release.yml ├── .gitignore ├── ERROR_CODES.md ├── LICENSE.md ├── README.md ├── cmd ├── config.go ├── developer-program.go ├── pico.go ├── root.go ├── sys-upgrade.go ├── tasks.go └── waydroid.go ├── config └── config.json ├── core ├── fdroid.go ├── pico.go ├── task-checks.go ├── task-struct.go ├── tasks.go ├── updater.go ├── utils.go └── waydroid.go ├── etc └── vso │ └── fdroid.repos.d │ ├── fdroid.toml │ └── izzyondroid.toml ├── go.mod ├── go.sum ├── locales ├── ar.yml ├── be.yml ├── bn.yml ├── ca.yml ├── de.yml ├── en.yml ├── en_GB.yml ├── eo.yml ├── es.yml ├── fr.yml ├── ga.yml ├── it.yml ├── kab.yml ├── ko.yml ├── nl.yml ├── pl.yml ├── pt.yml ├── pt_BR.yml ├── ro.yml ├── ru.yml ├── sl.yml ├── sv.yml ├── tr.yml ├── uk.yml ├── vi.yml ├── zh_Hans.yml └── zh_Hant.yml ├── main.go ├── man └── vso.1 ├── polkit ├── org.vanillaos.vso.policy └── org.vanillaos.vso.rules ├── settings └── config.go ├── usr ├── bin │ ├── os-shell │ ├── reset-vso │ └── vso-os-shell └── share │ └── vso │ └── apx │ ├── package-managers │ └── apt.yaml │ └── stacks │ ├── vso-pico.yaml │ └── vso-waydroid.yaml └── vso-logo.svg /.gitattributes: -------------------------------------------------------------------------------- 1 | # Ref: https://git-scm.com/docs/gitattributes 2 | * text=auto eol=lf 3 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanilla-OS/vanilla-system-operator/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/go.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanilla-OS/vanilla-system-operator/HEAD/.github/workflows/go.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanilla-OS/vanilla-system-operator/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanilla-OS/vanilla-system-operator/HEAD/.gitignore -------------------------------------------------------------------------------- /ERROR_CODES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanilla-OS/vanilla-system-operator/HEAD/ERROR_CODES.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanilla-OS/vanilla-system-operator/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanilla-OS/vanilla-system-operator/HEAD/README.md -------------------------------------------------------------------------------- /cmd/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanilla-OS/vanilla-system-operator/HEAD/cmd/config.go -------------------------------------------------------------------------------- /cmd/developer-program.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanilla-OS/vanilla-system-operator/HEAD/cmd/developer-program.go -------------------------------------------------------------------------------- /cmd/pico.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanilla-OS/vanilla-system-operator/HEAD/cmd/pico.go -------------------------------------------------------------------------------- /cmd/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanilla-OS/vanilla-system-operator/HEAD/cmd/root.go -------------------------------------------------------------------------------- /cmd/sys-upgrade.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanilla-OS/vanilla-system-operator/HEAD/cmd/sys-upgrade.go -------------------------------------------------------------------------------- /cmd/tasks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanilla-OS/vanilla-system-operator/HEAD/cmd/tasks.go -------------------------------------------------------------------------------- /cmd/waydroid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanilla-OS/vanilla-system-operator/HEAD/cmd/waydroid.go -------------------------------------------------------------------------------- /config/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanilla-OS/vanilla-system-operator/HEAD/config/config.json -------------------------------------------------------------------------------- /core/fdroid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanilla-OS/vanilla-system-operator/HEAD/core/fdroid.go -------------------------------------------------------------------------------- /core/pico.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanilla-OS/vanilla-system-operator/HEAD/core/pico.go -------------------------------------------------------------------------------- /core/task-checks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanilla-OS/vanilla-system-operator/HEAD/core/task-checks.go -------------------------------------------------------------------------------- /core/task-struct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanilla-OS/vanilla-system-operator/HEAD/core/task-struct.go -------------------------------------------------------------------------------- /core/tasks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanilla-OS/vanilla-system-operator/HEAD/core/tasks.go -------------------------------------------------------------------------------- /core/updater.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanilla-OS/vanilla-system-operator/HEAD/core/updater.go -------------------------------------------------------------------------------- /core/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanilla-OS/vanilla-system-operator/HEAD/core/utils.go -------------------------------------------------------------------------------- /core/waydroid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanilla-OS/vanilla-system-operator/HEAD/core/waydroid.go -------------------------------------------------------------------------------- /etc/vso/fdroid.repos.d/fdroid.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanilla-OS/vanilla-system-operator/HEAD/etc/vso/fdroid.repos.d/fdroid.toml -------------------------------------------------------------------------------- /etc/vso/fdroid.repos.d/izzyondroid.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanilla-OS/vanilla-system-operator/HEAD/etc/vso/fdroid.repos.d/izzyondroid.toml -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanilla-OS/vanilla-system-operator/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanilla-OS/vanilla-system-operator/HEAD/go.sum -------------------------------------------------------------------------------- /locales/ar.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanilla-OS/vanilla-system-operator/HEAD/locales/ar.yml -------------------------------------------------------------------------------- /locales/be.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanilla-OS/vanilla-system-operator/HEAD/locales/be.yml -------------------------------------------------------------------------------- /locales/bn.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanilla-OS/vanilla-system-operator/HEAD/locales/bn.yml -------------------------------------------------------------------------------- /locales/ca.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanilla-OS/vanilla-system-operator/HEAD/locales/ca.yml -------------------------------------------------------------------------------- /locales/de.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanilla-OS/vanilla-system-operator/HEAD/locales/de.yml -------------------------------------------------------------------------------- /locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanilla-OS/vanilla-system-operator/HEAD/locales/en.yml -------------------------------------------------------------------------------- /locales/en_GB.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanilla-OS/vanilla-system-operator/HEAD/locales/en_GB.yml -------------------------------------------------------------------------------- /locales/eo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanilla-OS/vanilla-system-operator/HEAD/locales/eo.yml -------------------------------------------------------------------------------- /locales/es.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanilla-OS/vanilla-system-operator/HEAD/locales/es.yml -------------------------------------------------------------------------------- /locales/fr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanilla-OS/vanilla-system-operator/HEAD/locales/fr.yml -------------------------------------------------------------------------------- /locales/ga.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanilla-OS/vanilla-system-operator/HEAD/locales/ga.yml -------------------------------------------------------------------------------- /locales/it.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanilla-OS/vanilla-system-operator/HEAD/locales/it.yml -------------------------------------------------------------------------------- /locales/kab.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanilla-OS/vanilla-system-operator/HEAD/locales/kab.yml -------------------------------------------------------------------------------- /locales/ko.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanilla-OS/vanilla-system-operator/HEAD/locales/ko.yml -------------------------------------------------------------------------------- /locales/nl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanilla-OS/vanilla-system-operator/HEAD/locales/nl.yml -------------------------------------------------------------------------------- /locales/pl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanilla-OS/vanilla-system-operator/HEAD/locales/pl.yml -------------------------------------------------------------------------------- /locales/pt.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanilla-OS/vanilla-system-operator/HEAD/locales/pt.yml -------------------------------------------------------------------------------- /locales/pt_BR.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanilla-OS/vanilla-system-operator/HEAD/locales/pt_BR.yml -------------------------------------------------------------------------------- /locales/ro.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanilla-OS/vanilla-system-operator/HEAD/locales/ro.yml -------------------------------------------------------------------------------- /locales/ru.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanilla-OS/vanilla-system-operator/HEAD/locales/ru.yml -------------------------------------------------------------------------------- /locales/sl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanilla-OS/vanilla-system-operator/HEAD/locales/sl.yml -------------------------------------------------------------------------------- /locales/sv.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanilla-OS/vanilla-system-operator/HEAD/locales/sv.yml -------------------------------------------------------------------------------- /locales/tr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanilla-OS/vanilla-system-operator/HEAD/locales/tr.yml -------------------------------------------------------------------------------- /locales/uk.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanilla-OS/vanilla-system-operator/HEAD/locales/uk.yml -------------------------------------------------------------------------------- /locales/vi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanilla-OS/vanilla-system-operator/HEAD/locales/vi.yml -------------------------------------------------------------------------------- /locales/zh_Hans.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanilla-OS/vanilla-system-operator/HEAD/locales/zh_Hans.yml -------------------------------------------------------------------------------- /locales/zh_Hant.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanilla-OS/vanilla-system-operator/HEAD/locales/zh_Hant.yml -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanilla-OS/vanilla-system-operator/HEAD/main.go -------------------------------------------------------------------------------- /man/vso.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanilla-OS/vanilla-system-operator/HEAD/man/vso.1 -------------------------------------------------------------------------------- /polkit/org.vanillaos.vso.policy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanilla-OS/vanilla-system-operator/HEAD/polkit/org.vanillaos.vso.policy -------------------------------------------------------------------------------- /polkit/org.vanillaos.vso.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanilla-OS/vanilla-system-operator/HEAD/polkit/org.vanillaos.vso.rules -------------------------------------------------------------------------------- /settings/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanilla-OS/vanilla-system-operator/HEAD/settings/config.go -------------------------------------------------------------------------------- /usr/bin/os-shell: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanilla-OS/vanilla-system-operator/HEAD/usr/bin/os-shell -------------------------------------------------------------------------------- /usr/bin/reset-vso: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanilla-OS/vanilla-system-operator/HEAD/usr/bin/reset-vso -------------------------------------------------------------------------------- /usr/bin/vso-os-shell: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanilla-OS/vanilla-system-operator/HEAD/usr/bin/vso-os-shell -------------------------------------------------------------------------------- /usr/share/vso/apx/package-managers/apt.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanilla-OS/vanilla-system-operator/HEAD/usr/share/vso/apx/package-managers/apt.yaml -------------------------------------------------------------------------------- /usr/share/vso/apx/stacks/vso-pico.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanilla-OS/vanilla-system-operator/HEAD/usr/share/vso/apx/stacks/vso-pico.yaml -------------------------------------------------------------------------------- /usr/share/vso/apx/stacks/vso-waydroid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanilla-OS/vanilla-system-operator/HEAD/usr/share/vso/apx/stacks/vso-waydroid.yaml -------------------------------------------------------------------------------- /vso-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanilla-OS/vanilla-system-operator/HEAD/vso-logo.svg --------------------------------------------------------------------------------