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.

chore(oscavmgr/start): improve error messages

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

+7
+7
src/atomic-xr/oscavmgr.nu
··· 7 7 export def start [ 8 8 module: string # babble, openxr (WiVRn), alvr 9 9 ] { 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 + 10 17 exec ($self | path join 'bin' 'oscavmgr-launch.sh') $module 11 18 }