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.

Install VrcAdvert for oscavmgr-launch

Fixes #17

Shiloh Fen 77725a15 4c43321c

+21
+21
src/atomic-xr/applications.nu
··· 189 189 190 190 container-exec {cargo build --release} 191 191 ln -sf ("target/release/oscavmgr" | path expand) ~/.local/bin/ 192 + install vrcadvert 192 193 } 193 194 194 195 export def "uninstall oscavmgr" [] { 195 196 rm -f ~/.local/bin/oscavmgr 197 + uninstall vrcadvert 198 + } 199 + 200 + def "install vrcadvert" [] { 201 + pull-or-clone vrcadvert https://github.com/galister/VrcAdvert 202 + cd ($repos | path join vrcadvert) 203 + tag-or-branch main 204 + 205 + container-exec { 206 + [ 207 + dotnet-runtime-8.0 208 + dotnet-sdk-8.0 209 + ] | sudo dnf install -y ...$in 210 + dotnet publish -r linux-x64 --self-contained true "-p:PublishSingleFile=true" "-p:PublishTrimmed=true" 211 + } 212 + ln -sf ("bin/Release/net8.0/linux-x64/publish/VrcAdvert" | path expand) ~/.local/bin/ 213 + } 214 + 215 + def "uninstall vrcadvert" [] { 216 + rm -f ~.local/bin/VrcAdvert 196 217 }