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): make `path self` a parse-time constant

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

+3 -1
+3 -1
src/atomic-xr/oscavmgr.nu
··· 1 1 # SPDX-License-Identifier: AGPL-3.0-only 2 2 # Copyright (c) 2025 Shiloh Fen <shiloh@shilohfen.com> 3 3 4 + const self = path self . 5 + 4 6 # Start OSC Avatar Manager and advertise it using VrcAdvert 5 7 export def start [ 6 8 module: string # babble, openxr (WiVRn), alvr 7 9 ] { 8 - run-external (path self ./bin/oscavmgr-launch.sh) 10 + run-external ($self | path join 'bin' 'oscavmgr-launch.sh') 9 11 }