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(oscavmgr/start): replace current process

Signed-off-by: Shiloh Fen <shiloh@shilohfen.com>

+8 -1
+8 -1
src/atomic-xr/oscavmgr.nu
··· 7 7 export def start [ 8 8 module: string # babble, openxr (WiVRn), alvr 9 9 ] { 10 - run-external ($self | path join 'bin' 'oscavmgr-launch.sh') 10 + if (which oscavmgr | length) == 0 or (which VrcAdvert | length) == 0 { 11 + error make -u { 12 + msg: "OscAvMgr and VrcAdvert are not installed" 13 + help: "Use `brew install oscavmgr vrc-advert` to install them" 14 + } 15 + } 16 + 17 + exec ($self | path join 'bin' 'oscavmgr-launch.sh') $module 11 18 }