XR for Universal Blue and Fedora Atomic Desktops
vr fedora-atomic linux
3
fork

Configure Feed

Select the types of activity you want to include in your feed.

Revert "envision: query requested rather than installed packages"

Bazzite ships openxr-libs as part of the base image

+5 -1
+5 -1
src/atomic-xr/envision.nu
··· 45 45 packages: list<string> 46 46 ] { 47 47 let missing_packages = $packages 48 - | where $it not-in (rpm-ostree status --json | from json | get deployments | first | get requested-packages) 48 + | each {|package| 49 + if (rpm -q $package | complete | get exit_code) != 0 { 50 + $package 51 + } 52 + } 49 53 50 54 if ($missing_packages | is-not-empty) { 51 55 rpm-ostree install ...$missing_packages