mirror of https://github.com/wayvr-org/wayvr.git
do not install SteamVR manifest by default
This commit is contained in:
parent
a8262c1de4
commit
635cfef63e
|
|
@ -112,7 +112,9 @@ pub fn openvr_run(args: &Args) -> Result<(), BackendError> {
|
||||||
|
|
||||||
app.late_init();
|
app.late_init();
|
||||||
|
|
||||||
let _ = install_manifest(&mut app_mgr);
|
if args.install {
|
||||||
|
let _ = install_manifest(&mut app_mgr);
|
||||||
|
}
|
||||||
|
|
||||||
let mut overlays = OverlayWindowManager::<OpenVrOverlayData>::new(&mut app, args.headless)?;
|
let mut overlays = OverlayWindowManager::<OpenVrOverlayData>::new(&mut app, args.headless)?;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -73,10 +73,14 @@ struct Args {
|
||||||
#[arg(long)]
|
#[arg(long)]
|
||||||
wait: bool,
|
wait: bool,
|
||||||
|
|
||||||
/// Uninstall OpenVR manifest and exit
|
/// Uninstall SteamVR manifest and exit
|
||||||
#[arg(long)]
|
#[arg(long)]
|
||||||
uninstall: bool,
|
uninstall: bool,
|
||||||
|
|
||||||
|
/// Install SteamVR manifest (not recommended; WayVR may have issues when auto-started by SteamVR!)
|
||||||
|
#[arg(long)]
|
||||||
|
install: bool,
|
||||||
|
|
||||||
/// Replace running WayVR instance
|
/// Replace running WayVR instance
|
||||||
#[arg(long)]
|
#[arg(long)]
|
||||||
replace: bool,
|
replace: bool,
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue