├── .gitignore ├── COPYING.md ├── README.md ├── VERSION ├── almost-logo.png ├── cmd ├── check.go ├── config.go ├── enter.go ├── offline-update.go ├── overlay.go ├── run.go ├── shell.go ├── state.go └── status.go ├── core ├── chattr.go ├── config.go ├── helpers.go ├── offline-update.go ├── overlay.go ├── packagekit.go ├── performer.go ├── state-overlay.go └── utils.go ├── debian ├── almost.debhelper.log ├── almost.install ├── almost.service ├── changelog ├── compat ├── control ├── copyright ├── files ├── gbp.conf ├── rules └── source │ └── format ├── go.mod ├── go.sum ├── main.go ├── packagekit-offline-update.service └── setup-dev.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanilla-OS/almost/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanilla-OS/almost/HEAD/COPYING.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanilla-OS/almost/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 1.2.9 -------------------------------------------------------------------------------- /almost-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanilla-OS/almost/HEAD/almost-logo.png -------------------------------------------------------------------------------- /cmd/check.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanilla-OS/almost/HEAD/cmd/check.go -------------------------------------------------------------------------------- /cmd/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanilla-OS/almost/HEAD/cmd/config.go -------------------------------------------------------------------------------- /cmd/enter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanilla-OS/almost/HEAD/cmd/enter.go -------------------------------------------------------------------------------- /cmd/offline-update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanilla-OS/almost/HEAD/cmd/offline-update.go -------------------------------------------------------------------------------- /cmd/overlay.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanilla-OS/almost/HEAD/cmd/overlay.go -------------------------------------------------------------------------------- /cmd/run.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanilla-OS/almost/HEAD/cmd/run.go -------------------------------------------------------------------------------- /cmd/shell.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanilla-OS/almost/HEAD/cmd/shell.go -------------------------------------------------------------------------------- /cmd/state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanilla-OS/almost/HEAD/cmd/state.go -------------------------------------------------------------------------------- /cmd/status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanilla-OS/almost/HEAD/cmd/status.go -------------------------------------------------------------------------------- /core/chattr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanilla-OS/almost/HEAD/core/chattr.go -------------------------------------------------------------------------------- /core/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanilla-OS/almost/HEAD/core/config.go -------------------------------------------------------------------------------- /core/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanilla-OS/almost/HEAD/core/helpers.go -------------------------------------------------------------------------------- /core/offline-update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanilla-OS/almost/HEAD/core/offline-update.go -------------------------------------------------------------------------------- /core/overlay.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanilla-OS/almost/HEAD/core/overlay.go -------------------------------------------------------------------------------- /core/packagekit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanilla-OS/almost/HEAD/core/packagekit.go -------------------------------------------------------------------------------- /core/performer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanilla-OS/almost/HEAD/core/performer.go -------------------------------------------------------------------------------- /core/state-overlay.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanilla-OS/almost/HEAD/core/state-overlay.go -------------------------------------------------------------------------------- /core/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanilla-OS/almost/HEAD/core/utils.go -------------------------------------------------------------------------------- /debian/almost.debhelper.log: -------------------------------------------------------------------------------- 1 | dh_installsystemd 2 | -------------------------------------------------------------------------------- /debian/almost.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanilla-OS/almost/HEAD/debian/almost.install -------------------------------------------------------------------------------- /debian/almost.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanilla-OS/almost/HEAD/debian/almost.service -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanilla-OS/almost/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 11 -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanilla-OS/almost/HEAD/debian/control -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanilla-OS/almost/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanilla-OS/almost/HEAD/debian/files -------------------------------------------------------------------------------- /debian/gbp.conf: -------------------------------------------------------------------------------- 1 | [DEFAULT] 2 | pristine-tar = True -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanilla-OS/almost/HEAD/debian/rules -------------------------------------------------------------------------------- /debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanilla-OS/almost/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanilla-OS/almost/HEAD/go.sum -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanilla-OS/almost/HEAD/main.go -------------------------------------------------------------------------------- /packagekit-offline-update.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanilla-OS/almost/HEAD/packagekit-offline-update.service -------------------------------------------------------------------------------- /setup-dev.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanilla-OS/almost/HEAD/setup-dev.sh --------------------------------------------------------------------------------