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.

Fix OS detection on Bazzite

+7 -2
+7 -2
src/atomic-xr/runtime.nu
··· 80 80 } 81 81 82 82 if ($missing_packages | is-not-empty) { 83 - if (which dnf | length) == 0 { 83 + if (which rpm-ostree | length) > 0 { 84 84 rpm-ostree install ...$missing_packages 85 85 86 86 job spawn { ··· 90 90 } 91 91 } 92 92 null 93 + } else if (which dnf | length) > 0 { 94 + pkexec dnf install ...$missing_packages 93 95 } else { 94 - pkexec dnf install ...$missing_packages 96 + error make { 97 + msg: "No supported package manager found" 98 + help: "This operation is only supported on Fedora-based operating systems. If this is a Fedora-based OS, please submit a bug report." 99 + } 95 100 } 96 101 } 97 102 }