├── .gitattributes ├── .github └── workflows │ ├── build.yml │ └── release.yml ├── .gitignore ├── README.md ├── VERSION ├── backgrounds ├── AUTHORS ├── LICENSE_CCBY ├── LICENSE_CCBYSA ├── better-neon.webp ├── better-soft.webp ├── impellent-dark.webp ├── impellent-light.webp ├── meson.build ├── orchid-dark.svg ├── orchid-light.svg ├── petals_dark.webp ├── petals_light.webp ├── petals_light_soft.webp ├── vanilla-dark.svg ├── vanilla-default.svg └── vanilla.xml.in ├── debian ├── changelog ├── control ├── control.in ├── copyright ├── rules └── source │ └── format └── meson.build /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanilla-OS/vanilla-backgrounds/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanilla-OS/vanilla-backgrounds/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanilla-OS/vanilla-backgrounds/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanilla-OS/vanilla-backgrounds/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 1.0.4 2 | -------------------------------------------------------------------------------- /backgrounds/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanilla-OS/vanilla-backgrounds/HEAD/backgrounds/AUTHORS -------------------------------------------------------------------------------- /backgrounds/LICENSE_CCBY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanilla-OS/vanilla-backgrounds/HEAD/backgrounds/LICENSE_CCBY -------------------------------------------------------------------------------- /backgrounds/LICENSE_CCBYSA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanilla-OS/vanilla-backgrounds/HEAD/backgrounds/LICENSE_CCBYSA -------------------------------------------------------------------------------- /backgrounds/better-neon.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanilla-OS/vanilla-backgrounds/HEAD/backgrounds/better-neon.webp -------------------------------------------------------------------------------- /backgrounds/better-soft.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanilla-OS/vanilla-backgrounds/HEAD/backgrounds/better-soft.webp -------------------------------------------------------------------------------- /backgrounds/impellent-dark.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanilla-OS/vanilla-backgrounds/HEAD/backgrounds/impellent-dark.webp -------------------------------------------------------------------------------- /backgrounds/impellent-light.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanilla-OS/vanilla-backgrounds/HEAD/backgrounds/impellent-light.webp -------------------------------------------------------------------------------- /backgrounds/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanilla-OS/vanilla-backgrounds/HEAD/backgrounds/meson.build -------------------------------------------------------------------------------- /backgrounds/orchid-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanilla-OS/vanilla-backgrounds/HEAD/backgrounds/orchid-dark.svg -------------------------------------------------------------------------------- /backgrounds/orchid-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanilla-OS/vanilla-backgrounds/HEAD/backgrounds/orchid-light.svg -------------------------------------------------------------------------------- /backgrounds/petals_dark.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanilla-OS/vanilla-backgrounds/HEAD/backgrounds/petals_dark.webp -------------------------------------------------------------------------------- /backgrounds/petals_light.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanilla-OS/vanilla-backgrounds/HEAD/backgrounds/petals_light.webp -------------------------------------------------------------------------------- /backgrounds/petals_light_soft.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanilla-OS/vanilla-backgrounds/HEAD/backgrounds/petals_light_soft.webp -------------------------------------------------------------------------------- /backgrounds/vanilla-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanilla-OS/vanilla-backgrounds/HEAD/backgrounds/vanilla-dark.svg -------------------------------------------------------------------------------- /backgrounds/vanilla-default.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanilla-OS/vanilla-backgrounds/HEAD/backgrounds/vanilla-default.svg -------------------------------------------------------------------------------- /backgrounds/vanilla.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanilla-OS/vanilla-backgrounds/HEAD/backgrounds/vanilla.xml.in -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanilla-OS/vanilla-backgrounds/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanilla-OS/vanilla-backgrounds/HEAD/debian/control -------------------------------------------------------------------------------- /debian/control.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanilla-OS/vanilla-backgrounds/HEAD/debian/control.in -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanilla-OS/vanilla-backgrounds/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- 1 | #!/usr/bin/make -f 2 | #export DH_VERBOSE = 1 3 | 4 | %: 5 | dh $@ --buildsystem=meson 6 | -------------------------------------------------------------------------------- /debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanilla-OS/vanilla-backgrounds/HEAD/meson.build --------------------------------------------------------------------------------