├── .github ├── CODEOWNERS ├── dependabot.yml ├── pull.yml ├── renovate.json5 └── workflows │ └── build.yml ├── Containerfile ├── LICENSE ├── README.md ├── cosign.pub └── system_files ├── etc └── profile.d │ └── neofetch.sh └── usr └── share ├── fish └── vendor_conf.d │ └── neofetch.fish ├── latencyflex └── dxvk.conf └── ublue-os └── bazzite └── neofetch.conf /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ublue-os/bazzite-arch/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ublue-os/bazzite-arch/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/pull.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ublue-os/bazzite-arch/HEAD/.github/pull.yml -------------------------------------------------------------------------------- /.github/renovate.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ublue-os/bazzite-arch/HEAD/.github/renovate.json5 -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ublue-os/bazzite-arch/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /Containerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ublue-os/bazzite-arch/HEAD/Containerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ublue-os/bazzite-arch/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ublue-os/bazzite-arch/HEAD/README.md -------------------------------------------------------------------------------- /cosign.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ublue-os/bazzite-arch/HEAD/cosign.pub -------------------------------------------------------------------------------- /system_files/etc/profile.d/neofetch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ublue-os/bazzite-arch/HEAD/system_files/etc/profile.d/neofetch.sh -------------------------------------------------------------------------------- /system_files/usr/share/fish/vendor_conf.d/neofetch.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ublue-os/bazzite-arch/HEAD/system_files/usr/share/fish/vendor_conf.d/neofetch.fish -------------------------------------------------------------------------------- /system_files/usr/share/latencyflex/dxvk.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ublue-os/bazzite-arch/HEAD/system_files/usr/share/latencyflex/dxvk.conf -------------------------------------------------------------------------------- /system_files/usr/share/ublue-os/bazzite/neofetch.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ublue-os/bazzite-arch/HEAD/system_files/usr/share/ublue-os/bazzite/neofetch.conf --------------------------------------------------------------------------------