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();
|
||||
|
||||
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)?;
|
||||
|
||||
|
|
|
|||
|
|
@ -73,10 +73,14 @@ struct Args {
|
|||
#[arg(long)]
|
||||
wait: bool,
|
||||
|
||||
/// Uninstall OpenVR manifest and exit
|
||||
/// Uninstall SteamVR manifest and exit
|
||||
#[arg(long)]
|
||||
uninstall: bool,
|
||||
|
||||
/// Install SteamVR manifest (not recommended; WayVR may have issues when auto-started by SteamVR!)
|
||||
#[arg(long)]
|
||||
install: bool,
|
||||
|
||||
/// Replace running WayVR instance
|
||||
#[arg(long)]
|
||||
replace: bool,
|
||||
|
|
|
|||
Loading…
Reference in New Issue