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.

runtime: accurately detect atomic distros

+3 -3
+3 -3
src/atomic-xr/runtime.nu
··· 80 80 } 81 81 82 82 if ($missing_packages | is-not-empty) { 83 - if (sys host).name == "Fedora Linux" { 84 - pkexec dnf install ...$missing_packages 85 - } else { 83 + if (which dnf | length) == 0 { 86 84 rpm-ostree install ...$missing_packages 87 85 88 86 job spawn { ··· 92 90 } 93 91 } 94 92 null 93 + } else { 94 + pkexec dnf install ...$missing_packages 95 95 } 96 96 } 97 97 }